C functions

From wikinotes

basics

C functions are basically exactly the same as cpp functions.

void my_function( *str name,

main

main is the interactive portion of your code. This is what provides the CLI interface for your code.

int main( int argc, char *argv[] ){
	// argc == number of arguments (if no arguments, has value of 1)
	// argv == array of CLI arguments
}