Briefing Zend Knowledge

What is the output of the following code?

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

A.
4

B.
3

C.
5

D.
0

E.
1