how to make a working calculator in c++
Answers
Answer:
"Create a C++ Application
Go to File → New → Project in Visual Studio. The New Project window will open.
On the left sidebar, make sure Visual C++ is selected. Click on Windows Console Application.
At the bottom, name the new project “CalculatorTutorial”, then click OK. ... This will create an empty C++ Windows Console Application. Console applications execute instructions and use a Windows terminal window to display output and accept user input
In your CalculatorTutorial.'
Explanation:
Answer:
"Create a C++ Application
Go to File → New → Project in Visual Studio. The New Project window will open.
On the left sidebar, make sure Visual C++ is selected. Click on Windows Console Application.
At the bottom, name the new project “CalculatorTutorial”, then click OK. ... This will create an empty C++ Windows Console Application. Console applications execute instructions and use a Windows terminal window to display output and accept user input
In your CalculatorTutorial.'