What will be the output of the following function?
main() { static int var = 5; printf(%d ,var--); if(var) main(); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following function?
main() { static int var = 5; printf(%d ,var--); if(var) main(); }