Sunday, March 10, 2013

A C++ Program to Add Two Numbers


#include<stdio.h>
#include<conio.h>
void main()
{
clrscr();
int a,b,c;
a=5;
b=8;
c=a+b;
printf("the result is=%d",c);
getch();
}

No comments:

Post a Comment