What does that text do? I just joined a C++ class and the professor half-assed everything. I'll probably end up just learning from books.
Name:
Anonymous2009-04-08 14:59
>>1
main() is the entry point to your program. The two parameters being passed to it represent the command line of the program. The first parameter, argc, is the number of items on the command line. The second parameter, argv, is an array of pointers to strings (character arrays).