railway Gujarat Metro SCTO Mock Test 2023 Programming and Data Structure Programming in C Function Recursion
Chose the best appropriate answer for the below given code:
#include
int main()
{
printf("TESTBOOK");
main();
return 0;
}
1
It will give an error
2
TESBOOK will be printed infinitely
3
TESTBOOK will be printed until system gets shutdown
4
TESTBOOK would be printed until stack overflow happens