Code Snippets C

#include
int main(int argc, char *argv[])
{
int j;
for(j = 1; j < argc; j++)
printf("%s ", argv[ j ]);
return 0;
}