write a program on c++ to display Hello world
Answers
Answered by
1
Explanation:
#include <iostream> // Declaration of header
using namespace std; // Using std namespace
int main() // Function main through which program execution begins
{
cout << "Hello World"; // Displaying "hello world"
return 0; // Returning 0 indicates success to the operating system
}
Similar questions