From 5fa3503b5a9cb6e528f89f00ec26e4b49416e609 Mon Sep 17 00:00:00 2001 From: drunkendog Date: Thu, 14 Sep 2023 19:01:22 +0100 Subject: [PATCH] Add tests/echo-fail.c --- tests/echo-fail.c | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 tests/echo-fail.c diff --git a/tests/echo-fail.c b/tests/echo-fail.c new file mode 100644 index 0000000..52996ab --- /dev/null +++ b/tests/echo-fail.c @@ -0,0 +1,9 @@ +#include + +int main(void) { + int input; + scanf("%d", &input); + printf("%d\n", input); + + return 0; +} \ No newline at end of file