Example & Tutorial understanding programming in easy ways.

Write a program to print “hello world” without using a semicolon?

program:


#include<stdio.h>

int main()

{

if(print("hello world"))

{
}
}


output:

hello world

Read More →