write a program that illustrate command line


Write a Program that illustrate Command Line Parameters?

main(int argc, char *argv[])
{
int i;

for(i = 0; i < argc; i++)
printf("arg %d: %s\n", i, argv[i]);
return 0;
}

 

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: write a program that illustrate command line
Reference No:- TGS0305242

Expected delivery within 24 Hours