TEACH YOURSELF C by Herbert Schildt

Understand the components of a C program.
Create and compile a program.
Declare variables and assign values.
Input numbers from the keyboard.
Perform calculations using arithmetic expressions.
Add comments to a program.
Write your own functions.
Use functions toreturn values.Use function arguments.
Become familiar with the If. Add the else.
Create blocks of code. Use the for loop.
Substitute C's increment and decrement operators.
Expand printf()'s capabilities.
Program with C's relational and logical operators.
Input characters.
Nest if statements.
Examine for loop variations.
Understand C's while loop.
Use the do loop.
Create nested loops.
Use break to exit loop.
Know when to use the continue statement.
Select among alternatives with the switch statement.
Understand the goto statement.
Use C's data-type modifiers.
learn where variables are declared.
Take a closer look at constants.
Initialize variables.
Understand type conversions in expressions.
Understand type conversions in assignments.
Program with type casts.
Declare one-dimensional arrays.
Use strings.
Create multidimensional arrays.
Initialize arrays.
Build arrays of strings.Download