You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
programming-examples/c/Basic/C Program to Print the Prog...

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");
}