Explaining my code currently

There are 5 different sections of my code currently.
The 1st is the preprocessor directive, which tells the compiler to gather a header file and prepare it before it starts on my code.
The 2nd is the main function, this is where the main runtime for the program is ran from.
The 3rd are the expression statements, these express some kind of output to the terminal
The 4th is declaration statements, these declare variables and store them.
The 5th and final statement is the return statement, which returns a value from the function, because this is the main function it returns 0 to let the computer know everything ran ok.

Privacy & Terms