You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/c/Basic/C Program to Print a Semico...

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;
}