Small C programs to teach you the basics
For best results, compile using:
gcc -Wall
Variable and filenames follow CamelCase standards
Skeleton C program
Hello world program ##printingVariables.c First use of variables which includes declaring, assigning values and printing the values stored ##scanning.c Scanning and storing variables which include char, int and double data type. ##ifElse.c First use of if and else statments
First and basic use of for loops
First use of while and do while loops