4 lines
58 B
C
4 lines
58 B
C
|
int isupper(int c) {
|
||
|
return (c >= 'A' && c <= 'Z');
|
||
|
}
|