#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

#24_Stack_using_an_array

Ch2_09_PrecedenceAndAssociativity

Ch9_43_Ex3_GuessTheNumber