InterviewSolution
Saved Bookmarks
| 1. |
What does mysql_init() return?(a) integer(b) float(c) structure(d) pointer to a structure |
|
Answer» Correct choice is (d) pointer to a structure To elaborate: When NULL is passed to mysql_init() it automatically allocates an MYSQL structure, initializes it, and returns a pointer to it. The MYSQL data type is a structure containing information about a connection. |
|