The “Hello World” application is the first step of learning programming language. It is one of the basic code in which we will be displaying the message "Hello World" on the output screen. in this article you will also learn about cout through which we can print anything on the screen.
#include <iostream>
int main() {
std::cout << "Hello World!";
return 0;
}