जॉइन Examsbookउत्तर :
How many times the following program would print 'Jamboree'?
main()
{
printf ( "\nJamboree");
main ();
}5
प्र: How many times the following program would print 'Jamboree'? main() { printf ( "\nJamboree"); main (); }
- उत्तर देखेंउत्तर छिपाएं
- Workspace
उत्तर :
व्याख्या :
Till the stack doesn't overflow

