NOTE
: \n#### C++ is an Object Oriented Language\n#### In C++ every line of the code must end with a semi-colon ( ; )\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