1
0
mirror of https://github.com/krislamo/knrc.git synced 2025-09-11 16:39:28 +00:00

Example of a cleaner IO implementation

This commit is contained in:
2021-11-05 21:01:14 -04:00
parent dcdc220259
commit 7099cc732e

View File

@@ -1,13 +1,10 @@
#include <stdio.h> #include <stdio.h>
/* copy input to output; 1st version */ /* copy input to output; 2nd version */
int main() int main()
{ {
int c; int c;
c = getchar(); while ((c = getchar()) != EOF)
while (c != EOF) {
putchar(c); putchar(c);
c = getchar();
}
} }