programming-examples/c/Basic/C Program to Print any Print Statement without using Semicolon.c
2019-11-18 14:44:36 +01:00

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"))
{
}
}