Werite
a Programs in C++ to print Hello
to the world of in one live the computer
science in the other line.
Answers
Answered by
0
Answer:
/ 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;
Explanation:
PLEASE MARK ME BRILLIANT
Similar questions