Just like scalar variables, you need to code the address-of operator before the name of an array's formal parameter in the function header when passing the array by reference.
Answer the following statement true (T) or false (F)
False
Computer Science & Information Technology
You might also like to view...
____ fonts work only in Internet Explorer.
A. SVG B. EOT C. TTF D. WOFF
Computer Science & Information Technology
Which is a volatile form of memory that holds the operating system, programs, and data the computer is currently using?
a. Flash
b. CMOS
c. RAM
d. ROM
Computer Science & Information Technology
____ variables may be declared as members of the static or extern storage class.
A. Local B. Global C. Automatic D. Register
Computer Science & Information Technology
In a sorted array, the kth smallest item is given by ______.
a) anArray[k-1] b) anArray[k] c) anArray[SIZE-k] d) anArray[SIZE+k]
Computer Science & Information Technology