What are the rules to create a valid C variable
What naming convention do we use for variables
use camelBack or saddleback notation
How do you declare a C constant at runtime and compile time/. What are the differences between both?
define SIZE 1000u // This will be in a global scope. It is set at compile time
const unsigne SIZE 1000; // This will be in a local scope. It will be set in runtime