#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

Ch9_43_Ex3_GuessTheNumber

#64_Funtions for File I/O in C

Ch2_09_PrecedenceAndAssociativity