how to use command line arguements in C code example
Example 1: command line arguments in c
int main( int argc, char *argv[] )
./a.out kiran kumar gun
./a.out is arg[0]
kirna is arg[1]
Example 2: argument to number C++
// C++ Code
int x = atoi(argv[1]);