Where local variables are stored in c?
No Answer is Posted For this Question
Be the First to Post Answer
what is the output of the following program and explain the answer #include<stdio.h> exp() { main(5) } main(int a) { printf("%d",a); return; }
Can variables be declared anywhere in c?
main() { char as[] = "\\0\0"; int i = 0; do{ switch( as[i++]) {case '\\' : printf("A"); break; case 0 : printf("B"); break; default : printf("C"); break; }} while(i<3); }
4 Answers Vector, Vector India,
Determine the result of performing two successive block transfers into the same area of a frame buffer using the binary arith operations
Which of these functions is safer to use : fgets(), gets()? Why?
Why do we need arrays in c?
what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }
Does c have function or method?
What's wrong with the call "fopen ("c:\newdir\file.dat", "r")"?
What is hashing in c?
main() { int a=5; printf(?%d,%d,%d\n?,a,a< <2,a>>2); } Answer: 5,20,1 please explain this code in detail
what is link list?