AMMONG THE 4 STROAGE CLASSES IN C, WHICH ONE FASTEST?
Answer Posted / jaya prakash
Register.
Since the register variable is stored in CPU.
Easy to retrive and modify it.
| Is This Answer Correct ? | 11 Yes | 0 No |
Post New Answer View All Answers
#define MAX(x,y) (x) >(y)?(x):(y) main() { inti=10,j=5,k=0; k= MAX(i++,++j); printf("%d..%d..%d",i,j,k); }
What is clrscr ()?
What is data types?
What is a program flowchart?
How can you convert integers to binary or hexadecimal?
GIVEN A FLOATING POINT NUMBER HOW IS IT ACTUALLY STORED IN MEMORY ? CAN ANYONE EXPLAIN?? THE 32 BIT REPRESENTATION OF A FLOATING POINT NUMBER ALLOTS: 1 BIT-SIGN 8 BITS-EXPONENT 23 BITS-MANTISSA
How can I read and write comma-delimited text?
explain what are actual arguments?
Write the control statements in C language
What is pragma c?
How reliable are floating-point comparisons?
How do you construct an increment statement or decrement statement in C?
process by which one bit patten in to another by bit wise operation is? (a) masking, (b) pruning, (c) biting, (d) chopping,
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Write a program to print factorial of given number without using recursion?