AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Answer Posted / dave
register storage class is faster.coz register accessing is
faster than main memory for the processor.for ide like
turbo,borland etc. there was a limitation in register usage.
but now for gcc and gnu ides there are millions of registers
to access.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What is a scope resolution operator in c?
main(){char *str;scanf("%s",str);printf("%s",str); }The error in the above program is: a) Variable 'str' is not initialised b) Format control for a string is not %s c) Parameter to scanf is passed by value. It should be an address d) none
What is the size of empty structure in c?
What does it mean when a pointer is used in an if statement?
What are the c keywords?
Explain pointers in c programming?
Hi how many types of software editions are there and their difference (like home editions, enterprise, standard etc) can u please help me
What is d scanf?
List some basic data types in c?
Explain what is a pragma?
What is adt in c programming?
Explain null pointer.
exit () is used to a) exit () terminates the execution of the program itself b) exit () terminates the execution of the loop c) exit () terminates the execution of the block d) none of the above
find the output? void r(int a[],int c, int n) { if(c>n) { a[c]=a[c]+c; r(a,++c,n); r(a,++c,n); } } int main() { int i,a[5]={0}; r(a,0,5); for(i=0;i<5;i++) printf("\n %d",a[i]); getch(); }
Tell us two differences between new () and malloc ()?