R
Q. What is the output of C program with structures?
int main() { struct tree { int h; int w; }; struct tree tree1={10}; printf("%d ",tree1.w); printf("%d",tree1.h); 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. What is the output of C Program with functions?
Q. Choose a right C Statement.
Q. When all cases are unmatched which case is matched in a switch statement?
Q. Which of the following mode argument is used to truncate?
Q. A pointer variable of type _______ cannot be dereferenced
Q. In C language, which Operator group has more priority between (*, / and %) and (+, -) groups.?
Q. The correct syntax for running two variable for loop simultaneously is
Q. What is the output of this C code?
Q. What will happen if the loop condition will never become false?
Discusssion
Login to discuss.