> For the complete documentation index, see [llms.txt](https://lauradang.gitbook.io/notes/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://lauradang.gitbook.io/notes/c++/cs_246/notes-to-rememeber.md).

# Notes To Rememeber

### Main() parameters:

* Can have two parameters:
  * **argc** is an integer **parameter** (**ARGUMENT COUNT**)
    * number of **arguments** passed to the program
    * program name is always the first **argument**, so there will be at least one **argument** to a program and the minimum value of **argc** will be one.
  * **argv** is an array (**ARGUMENT VECTOR**)
    * Stores arguments into array (first element is always the program name)
