Dear candidates you will find MCQ questions of C Programming here. Learn these questions and prepare yourself for coming examinations and interviews. You can check the right answer of any question by clicking on any option or by clicking view answer button.
Share your questions by clicking Add Question
int main()
{
int size=4;
int a[size];
a[0]=5;a[1]=6;
a[2]=7;a[3]=8;
printf("%d %d", *(a+2), a[1]);
}
int main()
{
int ary(3)=[20,30,40];
printf("%d", a(1));
}
int main()
{
int rollno[3]=[1001,1002,1003];
printf("%d", rollno[1]);
}
int main()
{
char grade={'A','B','C'};
printf("%c", grade[0]);
}