write a program to print hello world useing c++
Answers
Answered by
0
// Simple C++ program to display "Hello World"
// Header file for input output functions
#include<iostream>
using namespace std;
// main function -
// where the execution of program begins
int main()
{
// prints hello world
cout<<"Hello World";
return 0;
}
pls mark brainliest
Similar questions
Math,
19 days ago
English,
19 days ago
Computer Science,
9 months ago
Science,
9 months ago
English,
9 months ago