#01_1st basic program in C++

 #include<iostream>

//1st basic program in C++
int main()
{
    std::cout<<"hello world\n";
    return 0;
}

Comments

Popular posts from this blog