T
Q. What will be the output of the following C program?
#include <stdio.h> int myFunc(int x){ return (--x); } int main(){ int a = myFunc(13); printf("%d", a); return 0; }
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 cannot be used as LHS of the expression in for (exp1 ;exp2 ; exp3) ?
Q. What is the output of the following C program?
Q. What characters are allowed in a C function name identifier.?
Q. A register variable is stored in a Register. Where does a Register Present in a Computer?
Q. Which of the following storage classes have global visibility in C?
Q. Which of the following return-type cannot be used for a function in C?
Q. What will be the output of the following code snippet?
Q. mktime() function interprets tm structure as calendar time.
Q. How many expressions can be checked using if...elseif...else statement?
Discusssion
Login to discuss.