1.

Wap in c++to print the sum of three numbers whose value is 25,40and 65

Answer»

#INCLUDE
#include

void main()
{
CLRSCR();
int sum;
sum = 25 + 40 + 65;
cout << sum;
GETCH();
}



Discussion

No Comment Found