What are Storage Classes in C ?
Answer Posted / mayank
COMMAND LINE ARGUMENT IN C:::
THE ARGUMENT THAT WE PASS ON TO MAIN() AT THE COMMAND PROMPT
ARE CALLED COMMAND LINE ARGUMENT .........
| Is This Answer Correct ? | 6 Yes | 13 No |
Post New Answer View All Answers
Explain how to reverse singly link list.
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
code for quick sort?
What are two dimensional arrays alternatively called as?
Where local variables are stored in c?
What is a double c?
Where is volatile variable stored?
What is self-referential structure in c programming?
What is the difference between constant pointer and constant variable?
What is the benefit of using const for declaring constants?
How many header files are in c?
What is a loop?
What is the most efficient way to count the number of bits which are set in an integer?
What is the difference between the expression “++a” and “a++”?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer