This post contains 111-120 questions of c program. It will helpful to solve c aptitude questions, c quiz , c objective type questions etc in interview.111-120 QuestionsQ1: enum colors {BLACK,BLUE,GREEN} main() { printf("%d..%d..%d",BLACK,BLUE,GREEN); return(1); } Answer: 0..1..2 Q2: #include<stdio.h> main() { struct xx { int x=3; char name[]="hello"; }; struct xx *s=malloc(sizeof(struct xx)); printf("%d",s->x); printf("%s",s->name); } Answer: Compiler Error Q3: struct aaa{ struct aaa *prev; int i; struct aaa *next; […]... Read More »