mirror of
https://github.com/nganhkhoa/CTF-All-In-One.git
synced 2025-03-13 00:17:33 +07:00
11 lines
181 B
C
11 lines
181 B
C
#include<stdio.h>
|
|
void main() {
|
|
char str[1024];
|
|
while(1) {
|
|
memset(str, '\0', 1024);
|
|
read(0, str, 1024);
|
|
printf(str);
|
|
fflush(stdout);
|
|
}
|
|
}
|