An Introduction to C++

A little bit of history C++ is an expansion of the C programming language. It’s main addition was the ability to create and use objects. That makes it an Object Oriented Programming (OOP) based language. You do not have to start with objects however, as it retains all of the C procedural language constructs and…

A Sample C++ Program

Let’s look at a simple program and work through it step by step. #include #include statements are at the top of the file, and let you include any libraries you might need. iostream, in our example is used to help process input and output. You might think this is standard, but if you are building…

Oral Presentation of Senior Project

You will demonstrate your completed project before a selection of your peers and other professors of the college. During this demonstration you should include: A demo of the project Explain how you solved problems that arose during the project Identify any interesting solutions that you devised while building the project. Who makes up the target…

Senior Project Completion

Your final project is due. All code must be complete. Meaning that it has been written, tested (beta, integration, and user testing), documented (both internal and external as needed), and meeting the final design specification. Code must be turned into the instructor, along with documentation in an electronic format through Moodle. You should have used…