Define a console application to display all the arguments passed to command line while running the application. The user can pass any number of arguments that should be displayed. Use length property of array and for-each loop. If there are no arguments in command line display message ‘No Arguments’
1
Expert's answer
2013-01-23T09:50:08-0500
#include <stdio.h>
int main(int argc, char* argv[]) { if(argc == 1) printf("No Arguments\n"); else { int i; for(i = 1; i < argc; i++) printf("%s \n", argv[i]); } return 0; }
Comments
Leave a comment