Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 399 Bytes

0456.md

File metadata and controls

23 lines (19 loc) · 399 Bytes

What is the output of this code:

function c($a$b = 1$c) {
   return array($c$a$b);
}
list($a$b$c) = c(0,0,0);
echo $b;
  • A) 0
  • B) 1
  • C) 2
  • D) null
Answer

Answer: A