Showing posts with label recursive main. Show all posts
52

52

int main() { static int a=4; if(a!=0) { --a; main(); printf("%d",a); } return 0; } Output 0000 Logic: "static variables retai...
Read More