Google News
logo
MySQL - Quiz(MCQ)
What does mysql_fetch_row() return?
A)
float
B)
integer
C)
structure
D)
pointer

Correct Answer :   pointer


Explanation : ‘mysql_fetch_row()’ returns a MYSQL_ROW value, a pointer to an array of values. If the return value is assigned to a variable named row each value within the row is accessed as row[i].

Advertisement