chore: formatting

This commit is contained in:
Rushil Umaretiya 2024-02-05 03:10:45 -05:00
parent 15f7544677
commit c36c240319
No known key found for this signature in database
GPG Key ID: 4E8FAF9C926AF959
2 changed files with 7 additions and 6 deletions
1-lower
3-truncator

View File

@ -1,13 +1,14 @@
// PID: 730677144 // PID: 730677144
// I pledge the COMP 211 honor code. // I pledge the COMP 211 honor code.
#include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
int main() { int main() {
char c; char c;
while ((c = getchar()) != EOF) { while ((c = getchar()) != EOF) {
if (64 < c && c < 91) c += 32; if (64 < c && c < 91)
c += 32;
putchar(c); putchar(c);
} }
} }

View File

@ -1,8 +1,8 @@
// PID: 730677144 // PID: 730677144
// I pledge the COMP 211 honor code. // I pledge the COMP 211 honor code.
#include <stdlib.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
int main() { int main() {
int lines[100]; int lines[100];