programming-examples/c/_Basic/C Program to Print a Semicolon without using a Semicolon anywhere in the Code.c
2019-11-15 12:59:38 +01:00

14 lines
245 B
C

/*
* C Program to Print a Semicolon without using a Semicolon
* anywhere in the code
*/
#include <stdio.h>
int main(void)
{
//59 is the ascii value of semicolumn
if (printf("%c ", 59))
{
}
return 0;
}