

 \n\n##### C++ is a high-level, object-oriented programming language that was created by Bjarne Stroustrup in the early 1980s. Stroustrup initially designed C++ as an extension of the C programming language, adding features such as classes, virtual functions, and operator overloading to create a more flexible and powerful language. The first version of C++ was released in 1985, and it quickly gained popularity among developers due to its ease of use, performance, and flexibility.\nNOTE:  \n#### C++ is an Object Oriented Language\n#### In C++ every line of the code must end with a semi-colon ( ; )\n\n
\n\n\n##### First thing's first, let us look into how you will run a program in c++\n##### Open the text editor of your choice. Create a folder called MyCode and go into the folder. Within this folder create a file called HelloWorld.cpp\n\nQUIZ: What is the file extension used when we write c++ code?  The answer to this question is .cpp \n\n##### Now copy and paste the below code into HelloWorld.cpp. Please save the file once you have pasted the code, because if you forget, then in case the file is closed, all your work is lost.\n\n#include \n\nint main() {\n    std::cout << \Hello, World!\";\n    return 0;\n}\n\n\n### Here are the steps to run a C++ code via terminal:\n\ng++ -o hello HelloWorld.cpp\n\n##### Here, hello  is the name of the file obtained after execution. I have named my file hello, but you can change it as per your liking.\n\n./hello\n\n##### Replace hello with the name you have given during compilation. \n