M
Q. What will be the output of the following code snippet?
#include <stdio.h> int main() { int a = 3, b = 5; int t = a; a = b; b = t; printf("%d %d", a, b); 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. Choose a correct statement with array pointers.
Q. Which is/are the size qualifier(s) in C language?
Q. Which operator connects the structure name to its member name?
Q. What is the output of C program?
Q. What is the output of this program?
Q. c = (n) ? a : b; can be rewritten asexp1 ? exp2 : exp3;
Q. What is the output of C Program?
Discusssion
Login to discuss.