What will be the result of the following operation?
<code>
array_combine(array(“A”,”B”,”C”), array(1,2,3));
</code>

A.
array(“A”,”B”,C”,1,2,3)
B.
array(1,2,3,”A”,”B”,C”)
C.
array(“A”=>1,”B”=>2,”C”=>3)
D.
array(1=>”A”,2=>”B”,3=>”C”)
E.
array(1,2,3)
Correct answer is C
0
0