//Printing Hellow World!
#include <iostream>
int main()
{
std::cout << “Hello World! \n”;
system(“pause”);
return 0;
}
Line begins with //, indicating that the remainder of the line is a comment. Programmers insert comments to document programs and also help people read [...]






