The start “Hello World” kind of

It goes without saying that when you start within C++ you must make the Hello World program its the starting point for sure. So with the current situation regarding Covis-19 it makes sense to change it a little. Here is the Hello Home program:

#include <iostream>



int main()

{
   
  std::cout << "Hello Home";
   
    return 0;
    
}

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *