Created
April 23, 2014 15:00
-
-
Save shihyu/11218774 to your computer and use it in GitHub Desktop.
This file contains 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
void func1(); | |
void func2(); | |
void func3(); | |
void func4(); | |
void func2() { | |
} | |
void func1() { | |
func2(); | |
func3(); | |
} | |
void func3() { | |
func4(); | |
} | |
void func4(){ | |
} | |
int | |
main( int argc, char **argv ) | |
{ | |
func1(); | |
func3(); | |
return 0; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment