C++ Beginners Programming Day 1
Write your first C++ Code:
#include<iostream.h>
main()
{
cout<<"Hello World";
}
#include(iostream.h) //Header file for input/output stream
main() // Main Function from where operating system starts to run a program.
{ //Open...
ayushblog.hashnode.dev1 min read