// Prints char's ASCII code #include int main(void) { char c = '#'; printf("%i\n", c); }