Question: First, let's create an include folder so we can put our header files. In the root of your project folder, run the following command: mkdir
First, let's create an include folder so we can put our header files. In the root of your project folder, run the following command: mkdir include Now, let's go inside that folder: cd include and open a text file called console.h in our editor. vim console.h Inside console.h we want to add the function headers for some of the behavior we will need to reference, as well as some constants that will help us in calculations. First we need to add our header guards. Add the following to your console.h file: #ifndef MYOSINCLUDECONSOLEH #define MYOSINCLUDECONSOLEH Future code will go here #endif
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
