ANSWERS VERIFIED
◉ is a C language description of an algorithm. Answer: function
◉ standard library of functions has ______ header files and many
other functions. Answer: 15
◉ Simple C program as a single function. Answer: main( )
◉ causes some specific action to be performed when the program is
executed. Answer: executable statement
◉ all executable statements must have this. Answer: ;
◉ displays all data types. Answer: printf( )
◉ sequence of one or more operands separated by operators.
Answer: expression
, ◉ expressions are evaluated according to the _____________ and
___________________ of the operand used. Answer: precedence,
associativity
◉ Every variable must be this (2). Answer: declared with data type,
used after delcared
◉ inform the compiler of a function's valid variable names. Answer:
declaration statements
◉ can be performed using assignment statements or mathematical
functions. Answer: Arithmetic calculations
◉ The assignment symbol, ______, is an operator. Answer: =
◉ C provides the +=, -=, *= and /= assignment operators. Answer:
True
◉ The increment operator, ++, adds ____ to a variable. Answer: 1
◉ The decrement operator, --, subtracts _____ from a variable.
Answer: 1