Printing 'Hello world' without using semicolon(;) return value || C programming
In this, we are going to see a program in which we will print "Hello World" without using semicolon(;) in C Programming Language.

//Program to print 'Hello world' without using semicolon(;) and without return

#include <stdio.h>

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

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post