Header Ads

  • Breaking News

    C++ "HELLO WORLD!" PRINT ON OUTPUT

    if you want to print "hello world!" on C++ then follow this step. It is very easy to print hello world on output by coding.

    The code is.

    #include<iostream>
    using namespace std;
    int main()
    {
    cout<<"HELLO WORLD!";
    return 0;
    }

    Hence the output is 


    output: HELLO WORLD!

    No comments

    Post Top Ad

    Post Bottom Ad