[ Challenge 2 ] Print "Hello World". | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 22

[ Challenge 2 ] Print "Hello World".

Write a program in C/C++/Java to print "Hello World" without using semicolon. https://code.sololearn.com/c7yLNeqbG224/?ref=app

19th Jan 2018, 12:49 PM
Ajay Gaikwad
Ajay Gaikwad - avatar
19 Answers
+ 22
https://code.sololearn.com/cu6Z9LeUXuvL/?ref=app
19th Jan 2018, 1:25 PM
Gaurav Agrawal
Gaurav Agrawal - avatar
19th Jan 2018, 2:38 PM
Danijel Ivanović
Danijel Ivanović - avatar
+ 19
https://code.sololearn.com/c505dMLkmEJx/?ref=app
20th Jan 2018, 6:29 AM
John Lloyd V. Dela Vega
John Lloyd V. Dela Vega - avatar
19th Jan 2018, 2:54 PM
LukArToDo
LukArToDo - avatar
+ 14
In c++.. #include <iostream> using namespace std; int main() { if(cout<<"Hello Word!"){} }
19th Jan 2018, 1:04 PM
Md. Nafis Ul Haque Shifat
Md. Nafis Ul Haque Shifat - avatar
19th Jan 2018, 2:58 PM
qwerty
qwerty - avatar
+ 11
hello world till time limit exceeded 😜 #include <stdio.h> main() { while (printf ("Hello World")){ } }
19th Jan 2018, 1:14 PM
Я. ♨
Я. ♨ - avatar
19th Jan 2018, 1:41 PM
Infinity
Infinity - avatar
+ 5
https://code.sololearn.com/cNxa8ltMKC1K/?ref=app
19th Jan 2018, 6:38 PM
...
+ 5
@Md. Nafis nice one but i see a ; in your code.. you should leave using namespace std; and use std::cout instead ;)
21st Jan 2018, 11:00 AM
AZTECCO
AZTECCO - avatar
19th Jan 2018, 4:09 PM
Вадим Сухотин (Vadim Sukhotin)
Вадим Сухотин (Vadim Sukhotin) - avatar
+ 3
https://code.sololearn.com/crSCUby9CEvT/?ref=app
20th Jan 2018, 12:44 PM
Я. ♨
Я. ♨ - avatar
+ 1
سلام
19th Jan 2018, 7:44 PM
Reza Heshmati
Reza Heshmati - avatar
+ 1
#include <stdio.h> void main(void ) { if(printf("Hello World") >0) { } }
20th Jan 2018, 10:26 AM
chandra sekhar seereddi
chandra sekhar seereddi - avatar
- 4
class A{ public static void main(String AR[]){ System.our.println("Hello World "); }}
20th Jan 2018, 3:07 PM
Himanshu Sekhar Tiwari
Himanshu Sekhar Tiwari - avatar
- 4
#include <stdio.h> void main(void ) {
20th Jan 2018, 8:25 PM
AÿØùb Gãsmį
AÿØùb Gãsmį - avatar
- 5
#include<iostream> using namespace std; int main () { count << "Hello World 😊 "; return 0; }
19th Jan 2018, 2:21 PM
Sefat Anam
Sefat Anam - avatar
- 5
#include<iostream.h> //tells compiler to include std input output header file. int main() { cout<<''hello world\n''; //prints hello world on user screen return 0; //return the value zero to the SO. }
19th Jan 2018, 3:26 PM
Jisan Ahmed
Jisan Ahmed - avatar
- 5
#include<iostream.h> //tells compiler to include std input output header file. int main() { cout<<''hello world\n''; //prints hello world on user screen return 0; //return the value zero to the SO. }
19th Jan 2018, 3:27 PM
Jisan Ahmed
Jisan Ahmed - avatar