#include <stdio.h>
char c;
void main() {
c='A';
c=c+1;
printf("%c", c); //con il %c stampa il carattere dopo A
//con il %d stampa il numero della tabella ASCII del carattere dopo A
}
To embed this project on your website, copy the following code and paste it into your website's HTML: