C Program to print the message without using semicolon

#include<stdio.h>
int main()
{
    if(printf("Printing a message without using semicolon\n"))
    {

    }
}

Output:

C program to print the message without using semicolon

Comments