R
Q. What will be output of the following c code?
void main(){ static main; int x; x=call(main); clrscr(); printf(“%d “,x); getch(); } int call(int address){ address++; return address; }
No solution found for this question.
Add Solution and get +2 points.
You must be Logged in to update hint/solution
Be the first to start discuss.
Q. Which of the following has same Precedence? A. ++ B. -> C. !
Q. What happens when you try to access an Array variable outside its Size.?
Q. The format identifier ‘%i’ is also used for _____ data type?
Q. What is the output of C Program with functions?
Q. Which are the fundamental data types in C?
Q. Every C Program should contain which function?
Q. What is the output of C Program with Strings?
Q. What is the keyword used to declare a C file pointer?
Q. What is the output of C Program with switch statement or block.?
Discusssion
Login to discuss.