Skip to content

Instantly share code, notes, and snippets.

View sterkhedkar's full-sized avatar
🎯
Focusing

Sumit Terkhedkar sterkhedkar

🎯
Focusing
  • Thinkbumblebee Analytics Pvt. Ltd.
  • India
View GitHub Profile
@sterkhedkar
sterkhedkar / Simple Program for Addition
Last active August 29, 2015 14:10
A simple C program for Adding two integers Using Parametrised Function.
//Demo Program for addition of two integers
#include<stdio.h>
int main(){
int a,b,c;
printf("Enter two integers");
scanf("%d %d",&a,&b);
c=add(a,b);
printf("Addition is: %d",c);
getch();
}