Can someone show me the code in c++ to show "HELLO WORLD" | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 2

Can someone show me the code in c++ to show "HELLO WORLD"

help please

16th Feb 2017, 9:19 AM
Harold Geraldino
Harold Geraldino - avatar
5 Answers
+ 3
it's in the course
16th Feb 2017, 9:20 AM
Mario L.
Mario L. - avatar
+ 2
cout<<"hello world";
16th Feb 2017, 9:24 AM
Krish Suwal
Krish Suwal - avatar
0
oh sorry im a newbie :) thanks btw
16th Feb 2017, 9:22 AM
Harold Geraldino
Harold Geraldino - avatar
0
#include <iostream> using namespace std; int main() { cout << "Hello World"; return 0; }
21st Mar 2017, 12:21 PM
Hasan Al-Yazidi
Hasan Al-Yazidi - avatar
0
#include<conio.h> void main() { cout<<"hello world"; }
22nd Mar 2017, 7:09 AM
Pratik Kumar
Pratik Kumar - avatar