> Online tutorial : Addding Two Number
Showing posts with label Addding Two Number. Show all posts
Showing posts with label Addding Two Number. Show all posts



Addding Two Number

#include<stdio>
#include<conio>
void main()
{
int a,b,c;
clrscr();
printf("\n enter the no");
scanf("%d%d"&a,&b);
c=a+b;
printf("add %d",c);
getch();
}