Created
November 10, 2021 15:13
-
-
Save hashimshafiq/6735d52c95d108d6e901c0de9db4e7df to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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