Command Line Arguments

Command-line arguments are accessible through two parameters in main():

Example: Printing command arguments

#include <stdio.h>
int main(int argc, char **argv) {
  for (int i = 0; i < argc; ++i) {
      printf("%s\n", argv[i]);
  }
  return 0;
}

Example Interaction:

```bash
$ ./a.out -x -c -v -b
./a.out
-x
-c
-v
-b

String Conversion Functions from stdlib.h

FunctionDescription
atofConvert String to Floating-Point
atoiConvert String to Integer
atolConvert String to Long Integer
strtodConvert String to Double
strtolConvert String to Long Integer
strtollConvert String to Long Long
strtoulConvert String to Unsigned Long Integer