Expressions and Statements
Statement: complete action that computer can act on
- int number; (variable definition)
- number = 256; (assignment)
- gets(name); (function call)
- x = foo(y); (function call for processing or calculations)
- int count = 0;
while (count < 10) { ... }; (loop statement)
- if (lottoNumbersMatched != 6)
printf(“back to work...\n”);