All of the following are true of functions except:
a) they define specific tasks that can be used at many points in a pro-gram
b) a function call must specify the name and arguments of the func-tion
c) the definition of a function is always visible to other functions
d) the implementation of a function is hidden from the caller
c) the definition of a function is always visible to other functions
You might also like to view...
Answer the following statements true (T) or false (F)
1) Multi-dimensional arrays require two or more indices to identify particular elements. 2) When dealing with multi-dimensional arrays, each “row” must be the same size. 3) Tables are often represented with rectangular arrays. 4) By convention, the first set of brackets of a two-dimensional array identifies an element’s column and the second identifies the row. 5) Jagged arrays are maintained as arrays of arrays.
Which of these array definitions will set all the indexed variables to 0?
a) int array[5]; b) int array[5] = {0}; c) int array[5] = {0,1,2,3,4}; d) int array[5] = {0,0,0};x >>What is the x? e) int array[5] = {0,0,0,0,0};x >>What is the x?