programming-examples/c/Basic/C Program to Print any Print Statement without using Semicolon.c

11 lines
183 B
C
Raw Normal View History

2019-11-18 14:44:36 +01:00
/*
* C Program to Print any Print Statement without using Semicolon
*/
#include <stdio.h>
void main()
{
if(printf("Hi.. Welcome to sanfoundry"))
{
}
}