Skip to content

Instantly share code, notes, and snippets.

@sarim
Created August 7, 2012 16:21
Show Gist options
  • Save sarim/3286916 to your computer and use it in GitHub Desktop.
Save sarim/3286916 to your computer and use it in GitHub Desktop.
#include<stdio.h>
#include "sarim.h"
int main()
{
printf("Hello world");
int k = skadd(1,2);
printf("sum: %d",k);
return 0;
}
#include "sarim.h"
int skadd(int a,int b){
return a + b;
}
int skadd(int a,int b);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment