Does this program stop? Why?

 

int x=1024;
int main() {
        x -= 2;
        main();
        x++;
        main();
        x++;
        return x;
}


 ultraman@uncleraymond.com
Home