A
Q. Assuming int size is 4 bytes, what is going to happen when we compile and run the following program?
Code:
#include “stdio.h”
int main()
{
printf(“GeeksQuizn”);
main();
return 0;
}
int main()
{
printf(“GeeksQuizn”);
main();
return 0;
}
- Correct Answer - Option(D)
- Views: 18
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.