need tips on how to make calculator workit should be like this cout << "1= add, 2= sub, 3= multiply, 4= divide"; u miss d double qoute....
cin.get()#include<iostream> using namespace std; int main() { int first_num,second_num,result; cout<<"...
cin/coutdatatype char stores only 1 character,thats why only A was displayed.change char to string.just foll...