#include <stdio.h>

char c; //solo 7 bit degli 8 disponibili, non tiene conto dei caratteri speciali

int main(void) {
    c='#';
    c=c+2;
    printf("%c", c);
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: