Which statement is false?

a) The ANSI C standard does not specify the order in which the operands of most operators are to be evaluated.
b) The ANSI C standard specifies the order of evaluation of operators &&, ||, comma, and ?:.
c) A program that evaluates Fibonacci numbers recursively achieves high performance because of exponential complexity.
d) Programs that depend on the order of evaluation of the operands of operators other than &&, ||, comma, and ?: can function differently on systems with different compilers.

c) A program that evaluates Fibonacci numbers recursively achieves high performance because of exponential complexity.

Computer Science & Information Technology

You might also like to view...

Which ping command option would be used to resolve the hostname when testing connectivity to a remote host's IP address?

A) ping -a B) ping -dns C) ping -d D) ping -r

Computer Science & Information Technology

Which character marks the end of a string?

a. void b. * c. \0 d. \! e. none of the above

Computer Science & Information Technology