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()
{
printf("Hello Boss.");
}
int main()
{
auto int a=10;
{
auto int a = 15;
printf("%d ", a);
}
printf("%d ", a);
return 1;
}
int main()
{
register a=10;
{
register a = 15;
printf("%d ", a);
}
printf("%d ", a);
return 20;
}
register int b;
prinf("%d", b);
int main()
{
register a=80;
auto int b;
b=a;
printf("%d ", a);
printf("%d ", b);
return -1;
}
void myshow();
int main()
{
myshow();
myshow();
myshow();
}
void myshow()
{
static int k = 20;
printf("%d ", k);
k++;
}
static int k;
int main()
{
printf("%d", k);
return 90;
}