Puzzle 2D7

Add up the elements in a 2D integer array

[E-6] Write a function that adds up the elements in a 2D array.

long add2DArray( int nrows, int ncols, int x[nrows][ncols] )


Previous Page        Answer         Next Page         Home