-
What does mysql_init() return?
-
- pointer to a structure
- structure
- float
- integer
- None of these
Correct Option: A
When NULL is passed to mysql_init() it automatically allocates a MYSQL structure, initializes it, and returns a pointer to it. The MYSQL data type is a structure containing information about a connection.