A C PROGRAM to print " hello world " without using semicolon | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

A C PROGRAM to print " hello world " without using semicolon

21st Jan 2018, 3:10 PM
SPK
SPK - avatar
3 Answers
+ 4
#include<studio.h> int main() { if(printf("HEllo world")) {} return 0; } It will work
21st Jan 2018, 3:35 PM
Ayush Tripathi
+ 3
thanks
21st Jan 2018, 3:35 PM
SPK
SPK - avatar
+ 2
@Ayush I fixed your errors and here's the complete working code. https://code.sololearn.com/cMOSFvsuisH5/?ref=app
21st Jan 2018, 6:23 PM
Rishabh Agrawal
Rishabh Agrawal - avatar