Question:Write a c program to print Hello world without using any semicolon. 

Answer Solution: 1
void main(){
  if(printf("Hello world")){
  }
}
Solution: 2
void main(){
    while(!printf("Hello world")){
   }
}
Solution: 3
void main(){
   switch(printf("Hello world")) {
   }
}
 

+ Report
Total Preview: 2041
Write a c program to print Hello world without using any semicolon.
Copyright © 2024. Powered by Intellect Software Ltd