How will you print “Hello World” without semicolon?

Can we print Hello world without the use of semicolon at the end of printf?

Your Answer

#include<stdio.h>
int main()
{
if(printf("helloworld"))
{
}
}

1
c programming
Practice Mock Test
c programming