Skip to content

Instantly share code, notes, and snippets.

@shihyu
Created April 23, 2014 15:00
Show Gist options
  • Save shihyu/11218774 to your computer and use it in GitHub Desktop.
Save shihyu/11218774 to your computer and use it in GitHub Desktop.
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