Part 1 : Printf Hello word in C without using semicolon [only ones ]
#include<stdio.h> void main() { if(printf("Hello")) { } }
Output :
Hello
Part 2 : Printf Hello word in C without using semicolon [infinite times]
#include<stdio.h> void main() { while(printf("Hello")) { } }
Part 3 : Printf Hello [Using Switch]
#include<stdio.h> void main() { switch(printf("Hello")) { } }
Part 4 : Using Else-if Ladder
#include<stdio.h> void main() { if(printf("")) { } else if (printf("Hello")) { } else { } }
Part 5 : Printf Hello [Using While and Not]
#include<stdio.h> void main() { while(!printf("Hello")) { } }
Part 6 : Using #define
#include<stdio.h> #define PRINT printf("Hello") void main() { if(PRINT) { } }
Incoming search terms:
- how to print a word in c with out semicolen (2)
- a program to print hi without semocolon in c (1)
- program to read the word hello without using semicolon (1)
- program in c to print word without using semicolons (1)
- printing hi without using semicolons (1)
- print name without use semicolon in c program code (1)