From 54190754933050dc7c50920dc767c1f7127deace Mon Sep 17 00:00:00 2001 From: ilsix Date: Sun, 7 Apr 2024 01:47:03 +0200 Subject: [PATCH] Echo C --- c/echo.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 c/echo.c diff --git a/c/echo.c b/c/echo.c new file mode 100644 index 0000000..8144c47 --- /dev/null +++ b/c/echo.c @@ -0,0 +1,6 @@ +#include + +int main( int argc, char *argv[] ) { + printf("Echo: %s\n", argv[1]); + return 0; +} \ No newline at end of file