Skip to content

Instantly share code, notes, and snippets.

@lyo
Created January 31, 2021 10:07
Show Gist options
  • Select an option

  • Save lyo/c12d2b80ef44faec2dcff4cdfced7f38 to your computer and use it in GitHub Desktop.

Select an option

Save lyo/c12d2b80ef44faec2dcff4cdfced7f38 to your computer and use it in GitHub Desktop.
#include <stdio.h>
int add(a,b)
int a, b;
{
return a+b;
}
int main(void){
printf("%d \n", add(1,5));
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment