Which of the following statements declares a function with a pointer variable as a parameter?
A. void fun (int ptr);
B. void fun (&int ptr);
C. void fun (*int ptr);
D. void fun (int& ptr);
E. void fun (int* ptr);
Answer: E
Computer Science & Information Technology
You might also like to view...
The Shutter Bar Open/Close button at the top of the Navigation Pane and opens and closes the pane
Indicate whether the statement is true or false
Computer Science & Information Technology
Which of the following MySQL privileges allows users to remove databases, tables, or views?
a. DROP b. TRIGGER c. DELETE d. EXECUTE
Computer Science & Information Technology