Every example program in my book includes these parameters of main, could you tell me what they stand for?
(I understand 'int, main, and char')
int main(int argc, char* argv[])
arg= argument?
So whats the 'c' and the 'v' after arg?
The '*' and the '[]' are in the appendix in the back of my book, but I don't understand their uses here.
Also what does the 'c' in cout stand for? The c'out' stands for 'output' right? I like to understand every part of the program, it's easier for me to learn so that's the reason I would like to know.
Thank you for your time.
