This programming challenge, 2 Report Heading, asks us to create a program that outputs the heading for a company report. We need to create a header, implementation and client file. If you’re not familiar with these three different files, check out my blog about programming challenge 7-1 Date. First, I created the header file, this is […]
You are browsing archives for
Category: Chapter 7
7.1: Date – Class Constructors, Header Files & Default Parameters
Class constructors, header files and default parameters took me far to long to get the hang of. Header files, as you already know, are referenced using the “#include” at the beginning of programs. Header files end with a “.h”. Distinct from header files, source files for C++ end with “.cpp”. Sources files are compiled and […]