#include char global_letter = 'A'; int main(void) { global_letter++; printf("%c", global_letter); putchar('\n'); return 0; }