mirror of
https://github.com/reactos/CMake.git
synced 2024-12-04 17:56:26 +00:00
12 lines
126 B
C++
12 lines
126 B
C++
|
#include <stdio.h>
|
||
|
|
||
|
int main()
|
||
|
{
|
||
|
int c;
|
||
|
while((c = getc(stdin), c != EOF))
|
||
|
{
|
||
|
putc(c, stdout);
|
||
|
}
|
||
|
return 0;
|
||
|
}
|