Review Questions
What is the difference between internal and external (global) variables ?
What is the difference between static and automatic variables ?
If a variable is declared outside a function block with a modifier static, does it have internal linkage (not accessible from other files) or external linkage (can be accessed by other files) ?
What is the purpose of each field between the parenthesis in a for loop ? for (a;b;c)…
What is the difference between :while (j > 0) do {…} anddo {…} while (jɬ)