Report Bug
Qus : Which of the following is the correct way to pass a pointer to a function?
QusWhich of the following is the correct way to pass a pointer to a function?

A. function(int ptr);
B. function(int *ptr);
C. function(*ptr);
D. function(ptr *int);


Solution
B. function(int *ptr);






Report Bug