M
Q. What will be the output of the following code snippet?
#include <stdio.h> struct School { int age, rollNo; }; void solve() { struct School sc; sc.age = 19; sc.rollNo = 82; printf("%d %d", sc.age, sc.rollNo); } int main() { solve(); 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 name of "&" operator in C?
Q. What is the output of C Program with pointers?
Q. What will be the output of the following code snippet?
Q. What is the maximum number of dimensions an array in C may have?
Q. Which of the following is the correct output for the program given below?
Q. Libray function getch() belongs to which header file?
Q. Which type of conversion is NOT accepted?
Discusssion
Login to discuss.