Created
April 4, 2013 07:03
-
-
Save shonenada/5308422 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
using namespace std; | |
int i=0; | |
bool chk(); | |
bool c(); | |
void main(){ | |
chk(); | |
} | |
bool chk(){ | |
i >=1000 || i++,cout << i << " "; | |
c()||chk(); | |
return true; | |
} | |
bool c(){ | |
return i >= 1000; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment