MIPI_BaseC_WebinarFRTK/06_Lecture06/02_letter_change_p12.c

14 lines
362 B
C
Raw Permalink Normal View History

2024-11-13 09:22:28 +03:00
#include <stdio.h>
int main()
{
char c;
while( (c=getchar())!='\n') //спец символ новой строки
if(c>='a' && c<='z') //все символы лежат подряд a=97, b=98, c=99, ...
putchar(c-0x20);
//putchar('A' + (c-'a'));
else
putchar(c);
return 0;
}