copy input to output;2.0 curious_cat Uncategorized May 19, 2019 1 Minute #include <stdio.h> /*copy input to output;2nd version*/ main() { int c; while ((c =getchar()) != EOF) putchar(c); } Share this: Click to share on X (Opens in new window) X Click to share on Facebook (Opens in new window) Facebook Like Loading... Related Published by curious_cat View all posts by curious_cat Published May 19, 2019