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
Can I initialize unions?
Explain 'bit masking'?
What is exit() function?
Explain indirection?
Hello. How to write a C program to check and display president party like if i type in the console "biden" and hit enter the output shoud be : "biden is democrat" and if i type "trump" and hit enter the output shoud be: "trump is republican"
Why is c called "mother" language?
What is meant by type specifiers?
Explain output of printf("Hello World"-'A'+'B'); ?
What is a void pointer in c?
What is the use of sizeof () in c?
What is %g in c?
What is pointer to pointer in c language?
typedef struct{ char *; nodeptr next; } * nodeptr ; What does nodeptr stand for?
What would happen to X in this expression: X += 15; (assuming the value of X is 5)
What is getch c?