Introduction
Print hello world without using semicolon program shows how to print something without using semicolon in the printf function. Here in the program if condition is used. Printf function is written in the if loop without using semicolon, so that output will come as hello world.
#include<stdio.h> #include<conio.h> void main() { clrscr(); if(printf("hello world")) getch(); }
Comments/Suggestions are invited. Happy coding......!
Comments Post a Comment