Home / Questions / How will you print "Hello World" without semicolon?
Explanatory Question

How will you print "Hello World" without semicolon?

👁 1,073 Views
📘 Detailed Answer
🕒 Easy to Read
Read the answer carefully and go through the related questions on the right side to improve your understanding of this topic.

Answer with Explanation

int main(void)
{
if (printf("Hello World")) ;
}