12 lines
152 B
C
12 lines
152 B
C
|
|
#include <stdio.h>
|
||
|
|
|
||
|
|
/*Copy input to output; KNR C exercise 1-6*/
|
||
|
|
|
||
|
|
int main(){
|
||
|
|
int c;
|
||
|
|
|
||
|
|
while ((c = getchar()) != EOF)
|
||
|
|
putchar (c);
|
||
|
|
return 1;
|
||
|
|
}
|