Studytonight is now part of the GUVI universe. Explore GUVI →
🤩 New Cool Developer Tools for you. Explore →
FREE JavaScript Video Series Start Learning →
Signup/Sign In
Tests
MCQs to test your knowledge.
Compilers
Compilers to execute code in browser.
Index
LAST UPDATED: OCTOBER 9, 2020

C++ Hello World Program

Hello Everyone!

In this tutorial, we will learn how to write a basic Hello World program in C++ programming language.

#include<iostream>
using namespace std;
int main()
{
 cout << "Hello World! \n Welcome to Studytonight!!\n\n";
 return 0;
}

Output:

C++ hello world program

Now let's see what we have done in the above program.

C++ Hello World Program Explained:

Let's break down the parts of the code for better understanding.

1. #include<iostream>

The number sign (#) at the beginning of a line targets the compiler's pre-processor.
So, in the above case, #include tells the pre-processor to include the <iostream> header.

The <iostream> header defines the required libraries required to take the input and output data.

2. using namespace std

This tells the compiler to use the standard (std) namespace, which includes features of the C++ Standard Library.

3. int main()

Similar to any other programming language, in C++, the execution of the program begins with the main function: int main()

4. cout Statement

cout << "Hello World! \n Welcome to Studytonight!!\n\n"

In c++, the streams defined within the iostream header, are used for the input and output operations.

cout << is used to display output to the screen. (similar to the printf statement in C language)
cin >> is used to take input from the terminal. (similar to the scanf statement in C language)

5. return 0

The main method has int as it's return type. Hence, we need to return 0 to terminate the program.

Keep Learning : )



About the author:
Nikita Pandey is a talented author and expert in programming languages such as C, C++, and Java. Her writing is informative, engaging, and offers practical insights and tips for programmers at all levels.

Learn to Code
Learn and practice coding side-by-side.
NEW
C language Course
115+ coding exercises
Javascript Course
85+ coding exercises

AltStyle によって変換されたページ (->オリジナル) /