Question: What will be the output of the following C code? A. Hello students is printed once B. Hello students is printed infinite times C. Hello
What will be the output of the following C code?

A. Hello students is printed once
B. Hello students is printed infinite times
C. Hello students is printed till the stack overflows occur
D. None of the above
#include int main () { } printf ("Hello students"); main (); return 0;
Step by Step Solution
3.40 Rating (166 Votes )
There are 3 Steps involved in it
C Explanation In the above code the main function itself calling main ... View full answer
Get step-by-step solutions from verified subject matter experts
