Question: Command Line Arguments string to integer Two values will be passed to the main function from the command line. These values will be the number
Command Line Arguments string to integer Two values will be passed to the main function from the command line. These values will be the number of rows and columns needed to create a 2 dimensional array. Assume that argv[1] contains the value for rows and that argv[2] contains the value for columns. Write a C program that reads the command line arguments, converts the character strings to integers, and displays the integer values for rows and columns. This program should only have a single function named main. You will need to use the atoi function to convert strings to integers. Run the included example atoi01.c to understand what this function returns for various input strings. For more information: http://www.cplusplus.com/reference/cstdlib/atoi/?kw=atoi
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
