Print "Hello World" without using semicolon.

  1. int main()
  2. {
    1. //using if loop
    2. if(printf("Hello World")){
    3. }
//using switch
switch(printf("Hello World")){
}
//using while
while(!printf("Hello World")){
}
return 0;
}


Comments

Popular posts from this blog

Finding the second largest in an array