Print Hello World without semicolon in C
Here you will learn to print Hello World without semicolon in C programming. This code comes under the category of c tricky programs.
Program to print hello world without semicolon
1 2 3 4 5 6 7 | #include<stdio.h> int main() { if(printf("Hello World")) { } } |
Output
Check out our other C programming Examples