Question:What is the output of the following code?$a=1; ++$a; $a*=$a; echo $a--;
$a=1; ++$a; $a*=$a; echo $a--;
A 3 B 4 C 5 D 0 E 1
+ Answer ModeratedB
+ Report