Computer Science, asked by syedanousheen398, 11 months ago

write a program on c++ to display Hello world​

Answers

Answered by iscariotkruz
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