11 lines
183 B
C
11 lines
183 B
C
|
/*
|
||
|
* C Program to Print any Print Statement without using Semicolon
|
||
|
*/
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
if(printf("Hi.. Welcome to sanfoundry"))
|
||
|
{
|
||
|
}
|
||
|
}
|