The extraction operator can be used to store data in an element in a two-dimensional array.
Answer the following statement true (T) or false (F)
True
Computer Science & Information Technology
You might also like to view...
What’s the difference between a linear gradient and a radial gradient?
What will be an ideal response?
Computer Science & Information Technology
Which of the following statements successfully releases an array of 100 integers?
A. free(ptr); B. free(ptr[100]; C. free(ptr + 100; D. for(i = 0; i < 100; i++) free(ptr + i); E. for(i = 0; i < 100; i++) free(*ptr + 1));
Computer Science & Information Technology