Skip to content

Instantly share code, notes, and snippets.

@kvannotten
Created October 2, 2010 13:55
Show Gist options
  • Save kvannotten/607662 to your computer and use it in GitHub Desktop.
Save kvannotten/607662 to your computer and use it in GitHub Desktop.
int test(int, int);
int main(void){
int a = 6;
int b = 9;
printf("%d + %d = %d", a, b, test(a, b));
return 0;
}
int test(int a, int b){
return a + b;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment