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. Loops in C Language are implemented using.?
Q. Which of the following symbol is used to denote a pre-processor statement?
Q. The cos function computes the cosine of x.
Q. The ________ operator is true only when both the operands are true.
Q. Assume that a character takes 1 byte. Output of following program?
Q. The declaration means ' int (*p) [5];
Q. What will be the final values of i and j in the following C code?
Discusssion
Login to discuss.