Skip to content

Instantly share code, notes, and snippets.

@hashimshafiq
Created November 10, 2021 15:13
Show Gist options
  • Save hashimshafiq/6735d52c95d108d6e901c0de9db4e7df to your computer and use it in GitHub Desktop.
Save hashimshafiq/6735d52c95d108d6e901c0de9db4e7df to your computer and use it in GitHub Desktop.
#include <stdio.h>
int myadd(int a, int b) {
return a + b;
}
int main(int argc, char *argv[]) {
int result;
result = myadd(29, 13);
printf("%d\n", result);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment