Functions in C Programming MCQ (Multiple Choice Questions And Answers)
In this MCQ Quiz you get all most asked multiple choice questions and answers related to Functions in C Programmings onyl.
Are you preparing for the next job interviews? If yes, trust me this post will help you also we'll suggest you check out a big collection for Programming Full Forms that may help you in your interview:
List of Programming Full Forms
- int 2bhk(int*, int []);
- int 1bhk(int a);
- int 1bhk(int);
- All of the above
#include <stdio.h>
void foo()
{
return 1;
}
void main()
{
int x = 0;
x = foo();
printf("%d", x);
}
- Compile time error
- 1
- 0
- Runtime error
#include<stdio.h>
int main()
{
printf("TutorialLinks");
main();
return 0;
}
- 32767 times
- Till stack overflows
- 34567 times
- Compile time error