What will be the output of the following code?
#include <stdio.h>
int main()
{
printf("Functions");
main();
return 0;
}
a) Functions will be printed once
b) functions will be printed n times
c) depends upon the compiler
d) functions is printed until stack overflows
Answers
Answered by
0
Answer:
a) Functions will be printed once
Similar questions