mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-05 11:06:53 +00:00
17 lines
171 B
C
17 lines
171 B
C
|
#include <stdio.h>
|
||
|
|
||
|
int main(int argc, char **argv) {
|
||
|
|
||
|
int result;
|
||
|
|
||
|
while(1) {
|
||
|
result=getchar();
|
||
|
if (result<0) break;
|
||
|
|
||
|
printf("%d ",result);
|
||
|
}
|
||
|
|
||
|
printf("\n");
|
||
|
|
||
|
}
|