Wednesday, 9 July 2014

Addition of two Numbers

#include<stdio.h>
#include<conio.h>
void main()
int a,b,c;
{
clrscr;
printf("\nenter the value of a");
printf("\nenter the value of b");
scanf("%d",a);
scanf("%d",b);
scanf("%d",c);
c=a+b;
getch();
}

No comments:

Post a Comment