Important C Programming MCQ (Multiple Choice Questions)
Important C Programming MCQ (Multiple Choice Questions)
Create a free personalised study plan Create a FREE custom study plan
Get into your dream companies with expert guidance
Get into your dream companies with expert..
Real-Life Problems
Prep for Target Roles
Custom Plan Duration
Flexible Plans
Create My Plan
2.
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;
}
19 82
Compilation Error
https://www.interviewbit.com/c-programming-mcq/?utm_source=chatgpt.com 1/1