As we know, for display any statement in C language we use printf() function, and semicolon is mandatory at the last of the line.
like:
printf("Hello_world");
-Here we use semicolon at the last.
Try this without semicolon ?
program-
#include < stdio.h>
int main () {
if(printf("Hello world"))
{
}
}
Hello world