mirror of
https://github.com/Rushilwiz/comp211.git
synced 2025-04-04 03:10:16 -04:00
15 lines
237 B
C
15 lines
237 B
C
// PID: 730677144
|
|
// I pledge the COMP 211 honor code.
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main() {
|
|
char c;
|
|
while ((c = getchar()) != EOF) {
|
|
if (64 < c && c < 91)
|
|
c += 32;
|
|
putchar(c);
|
|
}
|
|
}
|