CS350 COS
COS
Loading...
Searching...
No Matches
echo.c File Reference
#include <stdio.h>
Include dependency graph for echo.c:

Go to the source code of this file.

Functions

int main (int argc, const char *argv[])
 

Function Documentation

◆ main()

int main ( int  argc,
const char *  argv[] 
)

Definition at line 5 of file echo.c.

6{
7 for (int i = 0; i < argc; i++)
8 printf("%s ", argv[i]);
9
10 printf("\n");
11
12 return 0;
13}
int printf(const char *fmt,...)
Definition: printf.c:212
Here is the call graph for this function: