It will look like int main(int argc, char *argv[]);. My questions are:
int main(int argc, char *argv[]);
1 How many array items can I add in argv[]?
argv[]
2 What is MAX si
Both of those are bounded only by how much memory you have (or how much memory your OS gives your program).
EDIT: Actually, the number of arguments is also bounded by the size of int.
int