C++ Program to find the sum, difference, product and quotient of two integers
#include <iostream.h> #include <conio.h> void main() { clrscr(); int x = 10; int y = 2; int sum, difference, product, quotient; sum = x + y; difference = x – y; product = x * y; quotient = x / y; cout << “The sum of ” << x << ” & ” << y … Read more