Okay, thanks. I wasn't sure if a feature like this was built into VS 2010. Based on the responses, it seems that it isn't I'll take a look at DOxygen thanks.
If I recall Java has a tool, I believe it's called Javadoc or something of that nature, that allows you to conveniently document your code. If I remember correctly, it generates HTML files...
When using the class view in VS 2010 Pro, it seems to show available classes but it does not let you browse the member variables/functions. Is there another view which does this? If so, I can't seem...
Yes, you are storing the input in a character array, and designating a maximum number of characters to read in getline(). If the input is larger than the maximum you have specified, you will run into...
I'm not trying to write the program, I'm only providing ideas for certain parts. If you design it this way, you could add an element to the array/vector whenever you need to add someone to the...
A vector is similar to an array, except that is grows dynamically. You don't need to know in advance exactly how many elements the vector will hold. Whenever you need to add an element to the vector,...
One possible option is to read the entire file into a vector of type Person, perform the needed operations, and then overwrite the file when the program is exiting. If your input file is huge, this...
I'm sure that many would argue that a GUI front-end does not have anything to do with the practical uses of a program. In any case, I think it depends on how low-level you want to go. If you are...
I'm still a bit new to things here, but I am trying to understand the logic behind the processing of the WM_PAINT message in this case. I have put my comments in below, trying to make...
Name your functions print_1_9, print_2_7, print_3_5, print_4_3, etc. Don't name them myFunction - that is just something I used when giving you an example.