#define _CRT_SECURE_NO_WARNINGS #include #include void main() { SetConsoleCP(1251); SetConsoleOutputCP(1251); printf("Введите символ = "); int ch = getchar(); for (int c = ch; c <= ch + 19; c++) { printf("'%c' (%d)\n", c, c); } printf("\n\n\n"); { int x; scanf("%d", &x); } }