#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

#10_Insertion in an array

#12_Binary searching

#24_Stack_using_an_array