C Program Print the hello world without using semicolumn:
The C programming has lots of magic. it breaks the own rule and regulation.
Today we will see one program, In which we display the HELLO WORLD without using semicolon.


PROGRAM CODE:-

Program: 1

#include<stdio.h>

void main()
{
    if(printf("Hello world"))
    {
    }
}

Program: 2

#include<stdio.h>

void main()
{
    while(!printf("Hello world"))
    {
    }
}

Program: 3

#include<stdio.h>

void main()
{
    switch(printf("Hello world"))
    {
    }
}

OUTPUT:-

hello world


C program to print the hello world without using semicolon
how to print the any message without using semicolon in c