Company Exam
Interview Question
Interview Experience
Quants
Reasoning
Verbal
MCQs
Tutorials
DSA
Ques 1 Union
What is the output of the following C Code?
#include<stdio.h> union Student { int roolNo; char gender; char name[10]; }; int main() { union Student s1; printf("%d", sizeof(s1)); return 0; }