...

/

Statements and Scope

Statements and Scope

Learn about statements and blocks in C, as well as about the scope of a variable.

We'll cover the following...

Program statements in C

In the examples of printf statements, variable declarations and variable assignments seen so far, you may have observed the semicolon at the end of several lines. This indicates that the line of code is a program statement in C. Lines 5–6 below are C statements. Line 7 below is ...