CS350 COS
COS
Loading...
Searching...
No Matches
echo.c
Go to the documentation of this file.
1
2#include <stdio.h>
3
4int
5main(int argc, const char *argv[])
6{
7 for (int i = 0; i < argc; i++)
8 printf("%s ", argv[i]);
9
10 printf("\n");
11
12 return 0;
13}
14
int main(int argc, const char *argv[])
Definition: echo.c:5
int printf(const char *fmt,...)
Definition: printf.c:212