Skip to content

Latest commit

 

History

History
75 lines (70 loc) · 17.5 KB

README.md

File metadata and controls

75 lines (70 loc) · 17.5 KB

C++ Coursework

This repo contains the programming challenges I completed while taking a C++ course in the Summer 2019 term. We used the textbook Starting Out With C++ (Brief Version) Ninth Edition by Tony Gaddis. This was an 8-week course--a semester condensed down for the summer term--so it was a lot of work over a relatively short period of time. I got an A in the class.

Prior to this class, I had experience with several languages including a little C#. I found the C++ syntax and structural requirements challenging but also kind of fun. You have to be explicit with C++. Creating an array? How many elements will it have? Defining an integer? What type of integer? C++ requires you to understand a lot more about data types and memory than a language like Python. Some of my learning in this course was simply translating concepts I already understood to the syntax of C++: things like printing, file stream, flow control, and loops. Some other concepts were either completely new to me or covered in much greater depth than I experienced before, such as pointers and classes.

Viewing or Running the Code

Since C++ is a compiled language, running any of this code on your machine may not be so simple. I created all of these projects with Netbeans 8.2 on OSX. If you happen to meet those two specs, you can try to import the entire project into Netbeans and run it. Otherwise, I recommend two options:

  • Simply view the contents of the .cpp, header, and text files right here on Github. Directory with links below.
  • Copy over the contents of the .cpp, header, and text files to an IDE of your choice, then build the project from your local machine.

Programming Challenges by Chapter