Created
August 7, 2012 16:20
-
-
Save sarim/3286915 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 "sarim.h" | |
int skadd(int a,int b){ | |
return a + b; | |
} |
This file contains hidden or 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> | |
#include "sarim.h" | |
int main() | |
{ | |
printf("Hello world"); | |
int k = skadd(1,2); | |
printf("sum: %d",k); | |
return 0; | |
} |
This file contains hidden or 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
int skadd(int a,int b); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment