AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Answer Posted / amaresh chandra das
Register.
Since the register variable is stored in CPU.
try once applying a programme:--
and check it it's execution time Using..
time ./a.out
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How is a macro different from a function?
In the DOS enveronment, normal RAM that resides beyond the 1mb mark. a) expanded memory b) swapped memory c) Extended memory d) none
Explain spaghetti programming?
Did c have any year 2000 problems?
What is c language in simple words?
What is the purpose of clrscr () printf () and getch ()?
What's the difference between constant char *p and char * constant p?
What is the difference between c &c++?
When we use void main and int main?
Can a pointer be null?
What is pointer in c?
What is the difference between arrays and pointers?
What is assignment operator?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
Why do we need arrays in c?