Update echo

This commit is contained in:
Alex
2023-06-12 00:46:49 +03:00
parent b10d76cd53
commit 0f8cb900cb

11
apps/base/echo/echo.c Normal file
View File

@ -0,0 +1,11 @@
#include <stdio.h>
int main(int argc, char *argv[])
{
for (int i = 1; i < argc; i++)
{
printf("%s ", argv[i]);
}
printf("\n");
return 0;
}