What will be the output of the following C code? void main() { static int t=7; printf(%d,t); if(t--) main(); }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following C code? void main() { static int t=7; printf(%d,t); if(t--) main(); }