Skip to content

Latest commit

 

History

History
20 lines (17 loc) · 444 Bytes

0744.md

File metadata and controls

20 lines (17 loc) · 444 Bytes

What is the output of the following code?

$str = printf('%.1f', 7.1);
echo 'Zend PHP Certification ';
echo $str;
  • A) 7.1Zend PHP Certification 3
  • B) Zend PHP Certification
  • C) Zend PHP Certification 7.1
  • D) none of above
Answer

Answer: A