Which of the following function declarations will accept the following two-dimension array? int pages[10][30];

a. void f1(int pages[][], int size);
b. void f1(int pages[][30], int size);
c. void f1(int pages[10][], int size);
d. void f1(int& pages, int size);


b. void f1(int pages[][30], int size);

Computer Science & Information Technology

You might also like to view...

The ________ symbol concatenates two values

A) $ B) * C) & D) #

Computer Science & Information Technology

Which of the following regulations explicitly specifies the topics that should be covered in a security awareness training?

A. FACTA B. HIPAA C. FCRA D. DPPA

Computer Science & Information Technology