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