Join ExamsbookAnswer :
How many times the following program would print 'Jamboree'?
main()
{
printf ( "\nJamboree");
main ();
}5
Q: How many times the following program would print 'Jamboree'? main() { printf ( "\nJamboree"); main (); }
- Show AnswerHide Answer
- Workspace
Answer :
Explanation :
Till the stack doesn't overflow



