Home » C Programming » Functions » Question
  1. How many times the following program will print "Manjesh"?
    #include <stdio.h>  
    int main ( )
    {
    printf ("Manjesh\n");
    main ( ) ;
    return 0 ;
    }
    1. Infinite number of times
    2. 32767 times
    3. 65535 times
    4. Till the stack doesn't overflow
Correct Option: D

Till the stack doesn't overflow



Your comments will be displayed only after manual approval.