finished lower

This commit is contained in:
Rushil Umaretiya 2024-02-05 02:19:31 -05:00
parent 1fd24901e0
commit d9d4568e99
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
3 changed files with 13 additions and 1 deletions

BIN
1-lower/lower Executable file

Binary file not shown.

View File

@ -1,2 +1,13 @@
// PID: 9DigitPidNoSpacesOrDashes
// 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);
}
}

1
1-lower/myresult.txt Normal file
View File

@ -0,0 +1 @@
tar heels