0
Why this code run infinite time??
#include <stdio.h> int main() { printf("Learn C\n"); display(); return 0; } void display(){ printf("followed by C++ and Java\n"); main(); }
1 Answer
+ 5
Because you call display() and display calls main() and it loops forever, its that simple.