Add tests/echo-fail.c
Tests / Run-Tests (push) Successful in 3s Details

multiline-output
drunkendog 2023-09-14 19:01:22 +01:00
parent fb9784ff63
commit 5fa3503b5a
1 changed files with 9 additions and 0 deletions

9
tests/echo-fail.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;
}