C++ is a general-purpose programming language created by Bjarne Stroustrup as an extension of the C programming language, or "C with Classes". The language has expanded significantly over time, and modern C++ now has object-oriented, generic, and functional features in addition to facilities for low-level memory manipulation. It is almost always implemented as a compiled language, and many vendors provide C++ compilers, including the Free Software Foundation, LLVM, Microsoft, Intel, Oracle, and IBM, so it is available on many platforms. C++ was designed with an orientation toward system programming and embedded, resource-constrained software and large systems, with performance, efficiency, and flexibility of use as its design highlights. C++ has also been found useful in many other contexts, with key strengths being software infrastructure and resource-constrained applic...
//Function Arthmatic Operation #include <iostream> using namespace std; //Function Declaring int add(int a , int b);//Function Prototype is declared before main() int sub(int a, int b); int _div(int a, int b);//'int' is return type of the Function int multi(int a, int b); int modulos(int a, int b); int main() { int rs1,rs2,rs3,rs4,rs5; //Taking New Variable For Storing Value of rs1 = add(30,20); //Calling the Function and Storing. cout<<"the addition of a+b is:"<<rs1<<endl; rs2 = sub(30,20); cout<<"the subtraction of a-b is:"<<rs2<<endl; //"cout" use for print line. rs3 = _div(30,20); cout<<"the division of a/b is:"<<rs3<<endl; //"endl" use for linebreak. rs4 = multi(30,20); cout<<"the multiplication of a*b is:"<<rs4<<endl; rs5 = modulos(30,20); cout<...