R
Q. What is the output of C program with strings?
int main() { char var='b'; printf("%d ", sizeof("a")); printf("%d ", sizeof('b')); printf("%d ", sizeof(10)); printf("%d ", sizeof(var)); } //int size is 2 bytes
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. What is the output of the following code snippet?
Q. Which among the following is a Local Variable?
Q. Which of the following type-casting is accepted in C?
Q. What is the output of this program?
Q. Can a loop be nested in C programming?
Q. The statement print f ("%d", 10 ? 0 ? 5 : 1 : 12); will print?
Q. What will be the output of the following C code?
Discusssion
Login to discuss.