Sunday 21 January 2018

Add of Two Numbers


Add of Two Numbers
#include<stdio.h>
#include<conio.h>
main (void)
{
int a,b,c;
clrscr();
printf("enter the value:");
scanf("%d %d",&a,&b);
c=a+b;
printf("the result is %d",c);
getch();
}�

0 comments:

Post a Comment