 
 #include stdio.hunion School {int age, rollNo;double marks;};void solve() {union School sc;sc.age = 19;sc.rollNo = 82;sc.marks = 19.04;printf("%d", (int)sizeof(sc));}int main() {solve();return 0;}
 
 #include stdio.hvoid solve() {int x = printf("Hello");printf(" %d", x);}int main() {solve();return 0;}
 A program contains the following code:
 A program contains the following code:main() {
 printf("\\nab");
 printf("\\bcd");
 printf("\\ref");
}Here, the result of the above program is -----? What would be the output after performing the following operations in a Deque?
 What would be the output after performing the following operations in a Deque?Insertfront(10);Insertfront(20);Insertrear(30);Insertrear(40);Deletefront();Insertfront(50);Deleterear();Display();
 A program contains the following code:
 A program contains the following code:#define clrscr() 123Here, the result of the above program is ------?void main() {clrscr();printf("%d", clrscr());}
 Predict the output
 Predict the outputdef fib(n):a=0b=1if n ==1:print (a)else:print (a)print (b)for i in range (2,n):c=a+ba= bb=cprint (c)fib (5)