Program 244:
To access Variables faster.In the above program value from 'i' is accessed faster when compared to 'j' as 'i' is stored in CPU memory rather than storing in RAM.However,when the variable 'i' failed to store the value in CPU memory due to processor or if the processor is busy doing some other tasks then it is converted to Auto by default. //Coming Soon...
Output:
#include<stdio.h> main() { register int i; int j; for(i=1;i<10;i++) { for(j=i;j<10;j++) { printf("%d",j); } printf("\n"); } }Explanation:
To access Variables faster.In the above program value from 'i' is accessed faster when compared to 'j' as 'i' is stored in CPU memory rather than storing in RAM.However,when the variable 'i' failed to store the value in CPU memory due to processor or if the processor is busy doing some other tasks then it is converted to Auto by default. //Coming Soon...
Output: