February 26th, 2013 01:19 AM
Here is an example I found here:
http://login2win.blogspot.com/2011/06/merge-sort.html
I had to change it around a bit to get it to compile, but it is now a working example.
#include...
December 5th, 2011 03:29 PM
Thanks, I had already visited the reference and understand why even a professional would choose to use this. Type errors just happen and create bugs so this tested template makes since. Thanks for...
December 5th, 2011 02:59 PM
I guess I should be patient because my next semester is algorithms and data structures.
December 5th, 2011 02:57 PM
Bug free is obviously the goal. I don't think I am that far from the program working though. It seems like the solution would be easy for a experienced programmer. If you feel the solution would be...
December 5th, 2011 02:38 PM
Here is the function called "IN" the current function:
Event *SetEvent()
{
string event = "", location = "", date = "", time = "", note = "";
Event *New = new Event;
...
December 5th, 2011 02:23 PM
this is very true! But being a beginner I am trying to fully understand the basics and learn from problems like this. Any suggestions or is more code needed? I feel like I am missing some rule here.
December 5th, 2011 01:54 PM
I am building a program for my brother to edit a few things on his website that I do not want to be bothered with. The one I am working on now is the EVENTS page. What is going on is that I am...