Eejay:
Immediately, I don't see what would cause the assertion failure, but there's a few things that could cause some bizarre and dangerous behavior in your project. Problems like these are very common in C++ and some of them are rather difficult to debug.
(1) I assume that you would like the Course class is allocate memory for and maintain the strings CourseName, instructor, and semesterYr. If that's the case, then it isn't enough to simply assign them in your constructor. Instead, you'll have to allocate memory and copy each string. The constructor currently loads pointers to temporary strings that are later freed.
(2) The fact that you've used the protected access type leads me to believe that you intend to later derive classes from Course. If that's the case, then I suggest you make your destructor virtual.
(3) The #include syntax has slightly changed from C to C++. In C++, library files are supposed to be referenced without any ".h". The older C libraries should also be referenced without the ".h", but they also should have a 'c' prepended to their names. For example, "#include " in C should be written as "#include " in C++. Microsoft Visual C++, for example, will sometimes include a different version of the file if you use the wrong syntax. This can cause errors if you are working with namespaces.
(4) In general, you should use brackets with a delete if you used them with a new. So, in your destructor, you should say
delete [] CourseName;
to be sure that the entire buffer gets freed.
(5) You should check in your assignment operator that you're not being assigned to yourself before you delete anything. For example, with your operator as is,
Course U("CETH 2261","Jeff","Spring");
U = U;
is not likely to behave as you intend.
(6) The use of pointers in your class makes things complicated. Sometimes this is unavoidable, but usually it's not. Because you're managing your own memory, you need to write your own constructor, destructor, copy constructor, and assignment operator. Classes like string in C++ give you the benefits of dynamic sizing of strings without having to worry about managing the heap memory yourself. You may want to take a look at string (or CString if you're using MFC).
I hope this helps. If you're running Microsoft Visual C++, you should be able to press the "Retry" button on the assert dialog and find out where this assertion is occurring.
Good Luck!
Chris Wood
Applications Engineer
National Instruments