Example & Tutorial understanding programming in easy ways.

Write a program to print "HelLo world" without using the semicolon.

program:


#include<stdio.h>

int main()

{

if(printf("Hello world"))

{
}
}


output:

Hello world

Read More →