Question: The program needs to be created using C++ and the final product should contain 4 files (driver.cpp, hello.h, hello.ccp, makefile). This is another assignment designed
The program needs to be created using C++ and the final product should contain 4 files (driver.cpp, hello.h, hello.ccp, makefile).

This is another assignment designed to debug the class procedures. The purpose of this assignment is to get everyone using the compiler. Assignment One We will write the "HelloWorld" program. Turn in four files named thus in a zipped folder: driver.cpp #include "hello.h" hello myHello; myHello.sayHello(); hello.h header file with the prototype for: class hello { public: void sayHello(); }; // OK to make it a struct hello.cpp Implementation of: the "hello" class void sayHello) #include "hello.h" // & any others you need void hello sayHello() { cout
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
