Sunday, 15 January 2012

Program To Find Addition Of Three Number In C++

#include<iostream.h>
#include<conio.h>
 main()
 {
 clrscr();
 int a,b,d,c;
 cout<<"Enter first number=";
 cin>>a;
 cout<<"Enter second number=";
 cin>>b;
 cout<<"Enter third number=";
 cin>>c;
 cout<<d;
 getch();
 }

No comments:

Post a Comment