18 lines
271 B
C
18 lines
271 B
C
#include <stdio.h>
|
|
|
|
int main() {
|
|
int character;
|
|
|
|
/*
|
|
character = getchar();
|
|
while (character != EOF) {
|
|
putchar(character);
|
|
character = getchar();
|
|
}
|
|
* which can be rewritten as...
|
|
*/
|
|
|
|
while ((character = getchar()) != EOF)
|
|
putchar(character);
|
|
}
|