Easy Calculator in c++

A decent calculator by Anirudh Sanyal that performs all the arithmetical operations of a normal calculator. Can be used to study various basic coding concepts by beginners. Provides addition subtraction multiplication and division functionality in C++. #include<iostream.h> #include<conio.h> #include<math.h> void main() { long double x,y; char ch,ar; do { clrscr(); cout<<” *WELCOME TO NANU’S CALCULATOR* …

Easy Calculator in c++ Read More »