Notes are fine... but we aren't using much programming.
As we're talking about some of the basics of systems... and we previously looked at control flow... I'm thinking we can use these together to create a simple text-based application for our notes?
Something sort of like:
#include <stdio.h>
int main() {
printf("My Notes Program \n");
printf("[ 1] - Notes about System Basics \n");
printf("[ 2] - Notes about System Changeover \n");
printf("[ 3] - Notes about System Life Cycles \n");
printf("[ 4] - etc \n");
int userChoice;
printf("Which do you choose?: ");
scanf("%d", &userChoice);
if (userChoice == 1) {
printf("Notes for system basics");
} else if (userChoice == 2) {
printf("Notes for system changeover");
} else {
printf("I didn't understand.");
}
return 0;
}
It may be tempting to just cut and paste your notes once you have a base working, but keep in mind that C is old, and you'll probably have to break up your notes into multiple strings because of size limitations.