Question:What is the output of the following?<?php $a = 010; $b = 0xA; $c = 2; print $a + $b + $c; ?>
<?php $a = 010; $b = 0xA; $c = 2; print $a + $b + $c; ?>
A 20 B 22 C 18 D $a is an invalid value E 2
+ AnswerB
+ Report