Q. What will be the output of print_r(array('a', 'b', 'c'))?
β
Correct Answer: (A)
Array ( [0] => a [1] => b [2] => c )
Explanation: print_r() displays human-readable information about a variable.