14 lines
319 B
C
14 lines
319 B
C
|
/*
|
||
|
* C Program to Print the Program Name and All its Arguments
|
||
|
*/
|
||
|
#include <stdio.h>
|
||
|
|
||
|
void main(int argc, char *argv[]) /* command line Arguments */
|
||
|
{
|
||
|
int i;
|
||
|
for (i = 0; i < argc; i++)
|
||
|
{
|
||
|
printf("%s ", argv[i]); /* Printing the string */
|
||
|
}
|
||
|
printf("\n");
|
||
|
}
|