Briefing Zend Knowledge

What is the output of the following code?

What is the output of the following code?
<code>
$a = 1;
++$a;
$a*=$a;
echo $a–;
</code>

A.
4

B.
3

C.
5

D.
0

E.
1