Add tests/echo.c

multiline-output
drunkendog 2023-09-14 18:39:13 +01:00
parent 9b903d6524
commit 90afbb63fb
1 changed files with 9 additions and 0 deletions

9
tests/echo.c Normal file
View File

@ -0,0 +1,9 @@
#include <stdio.h>
int main(void) {
int input;
scanf("%d", &input);
printf("%d\n", input);
return 0;
}