M
Q. Output is
#include <stdio.h> int main() { int a = 10; double b = 5.6; int c; c = a + b; printf(“%d”, c); }
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. Consider the following pseudocode of C program:
Q. A multidimensional array of dimension N is a collection of
Q. #include <stdio.h> int main() { int x[5] = { 10, 20, 30 }; printf("%d", x[-1]); return 0; }
Q. To represent hierarchical relationship between elements, which data structure is suitable?
Q. What is the index of the last argument in command line arguments?
Q. What is the output of the C Program.?
Q. Which function is used to read a line of text including spaces from the user in C?
Discusssion
Login to discuss.