Which statement is false?
a) Using global variables, instead of passing arguments, can increase program
performance, but reduce effective software engineering.
b) Hardcoding into a function the size of an array that will be passed as an argument
rather than passing the size of the array as a parameter, reduces the software reusability
of that function.
c) sizeof is an operator that calculates the size of its argument in bytes at compile time.
d) When applied to the name of an array, sizeof returns the number of elements in the
array.
Which statement is true?
a) The expression ++(a + 1) adds 2 to a.
b) The expression **a multiplies a by 1.
c) The ANSI standard for the C programming language specifies the order in which
each operator’s operands will be evaluated.
d) The expression –(abc * 37) is a syntax error