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


Please Help Members By Posting Answers For Below Questions

What are identifiers in c?

642


When do you not use the keyword 'return' when defining a function a) Always b) Never c) When the function returns void d) dfd

646


What are unions in c?

590


Explain about block scope in c?

667


When was c language developed?

708






Write a program of prime number using recursion.

627


Are the expressions * ptr ++ and ++ * ptr same?

673


What is a program flowchart and explain how does it help in writing a program?

688


Is it valid to address one element beyond the end of an array?

684


What are different types of operators?

604


.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }

2009


Explain how can I write functions that take a variable number of arguments?

619


What is a ternary operator in c?

664


What are header files in c programming?

660


WRITE A PROGRAM TO MERGE TWO SORTED ARRAY USING MERGE SORT TECHNIQUE..

1603