Sunday 21 January 2018

Add of Two numbers


#include<stdio.h>
#include<conio.h>
#define add 20
main()
{
int a,b;
clrscr();
printf("enter the value:");
scanf("%d",&a);
b=add+a;
printf("the result is %d",b);
getch();
}�

0 comments:

Post a Comment