programming-examples/c/_Basic/C Program to Print any Print Statement without using Semicolon.c
2019-11-15 12:59:38 +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"))
{
}
}