ADDITION OF TWO VALUES

#include<stdio.h>
#include<conio.h>
void main()
{
int a,b,c;
clrscr();
printf("Enter 2 Values");
scanf("%d %d",&a,&b);
c=a+b;
printf("Result of %d",c);
getch();
}

0 comments: (+add yours?)

Post a Comment