C Program to Print a String Without Use Semicolon.

How to write a C Program to Print a String Without Use Semicolon in C Programming Language ?


Solution For C Program :

/*C Program to Print a String Without Use Semicolon.*/

#include <stdio.h>
#include <conio.h>
void main()
{
 if(printf("Hello"))
}


Learn More :