AndreWeiner / udacity_cpp_course

Code examples for the Udacity C++ course

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Udacity C++ course solutions (code)

Overview

This repository contains my solutions to the programming quizzes of Udacity's C++ course. The course is available for free and can be found here.

Compilation and execution

The programs are all very simple. To compile the source file hello.cpp with the g++ compiler, simply run the following commands:

  g++ hellp.cpp -o hello
  ./hello

Contents and status

Basics

  • HelloWorld
  • Namespace
  • PrintVariables
  • FormattingOutput
  • FileIO
  • HeaderFiles
  • UserInput
  • CinAndStrings
  • StringStream

Arithmetic operations

  • Volumes
  • PreAndPostFix

Control flow

Pointers

Arrays

Functions

Classes

Overloading

Templates

Classes and inheritance

Polymorphism

Vectors and iterators

Interview questions

C++ checkpoint

About

Code examples for the Udacity C++ course


Languages

Language:C++ 100.0%