Skip to main content

C++ Programming

Print "Hello World"

In this example, we will learn to create a simple program named "Hello World" in C++ programming.


"Hello, World!" is a simple program that outputs Hello, World! on the screen. Since it's a very simple program, it's often used to introduce a new programming language to a newbie.
Let's see how C++ "Hello, World!" program works.


// Your First C++ Program

#include <iostream>

int main() {
    std::cout << "Hello World!";
    return 0;
}
Output
Hello World!

Comments

Popular posts from this blog

C++ Programming

Print "Hello World" In this example, we will learn to create a simple program named "Hello World" in C++ programming. A  "Hello, World!"  is a simple program that outputs  Hello, World!  on the screen. Since it's a very simple program, it's often used to introduce a new programming language to a newbie. Let's see how C++ "Hello, World!" program works. // Your First C++ Program #include <iostream> int main () { std :: cout << "Hello World!" ; return 0 ; } Output Hello World!