Write a program to print “hello world” without using a semicolon in C Language?

  1. #include<stdio.h>    
  2. void main(){
  3.  if(printf(“hello world”)){} // It prints the ?hello world? on the screen.
  4. }