Skip to content

Instantly share code, notes, and snippets.

@jontonsoup
Created January 27, 2013 22:52
Show Gist options
  • Save jontonsoup/4651094 to your computer and use it in GitHub Desktop.
Save jontonsoup/4651094 to your computer and use it in GitHub Desktop.
t.c: In function ‘function2’:
#include <stdio.h>
int main()
{
function1(1);
function2();
return 0;
}
int function1(int i)
{
printf("function%i\n", i);
return 1;
}
int function2()
{
printf("function2");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment