1. What is the output of this C code? #include <stdio.h> void main() { struct student { int no; char name[20]; }; struct student s; no = 8; printf(”%d”, no); } a) Nothing b) Compile time error c) Junk d) 8 AnswerAnswer: b [Reason:] None. 2. Number of bytes in memory taken by the below…