R
Q. What is the output of C program with structures?
int main() { struct tree { int h; int rate; }; struct tree tree1={0}; printf("%d ",tree1.rate); 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 arrays?
Q. Which of the following cannot be a variable name in C?
Q. What will be the output of the following C program?
Q. The concept of two functions with same name is know as?
Q. With which value should a pointer be initialized?
Q. What is the output of the program.? #include<stdio.h>
Q. An array Index starts with?
Q. What are the new features of C11 or ISO IEC 9899 2011 standard?
Discusssion
Login to discuss.