sizeof

a) is a binary operator
b) returns the total number of elements in an array
c) usually returns a double
d) returns the total number of bytes in an array

d) returns the total number of bytes in an array

Computer Science & Information Technology

You might also like to view...

To delete a building block, a document must be open so that the ________ command is active

A) Apps B) Building Block C) Quick Parts D) Track Changes

Computer Science & Information Technology

What would be the result after the following code is executed?

``` int[] x = {23, 55, 83, 19}; int[] y = {36, 78, 12, 24}; x = y; y = x; ``` a. x[] = {36, 78, 12, 24} and y[] = {23, 55, 83, 19} b. x[] = {36, 78, 12, 24} and y[] = {36, 78, 12, 24} c. x[] = {23, 55, 83, 19} and y[] = {23, 55, 83, 19} d. Nothing. This is a compile error.

Computer Science & Information Technology