Intro to C


C exucutes through 6 phases:

Formatting C code with printf:

printf("Integer value is %10.2f", x);
// 10 to add space to the left, -10 to add space to the right 
// .2f to format to 2decimal places

Data Types