What will be the output of the following PHP code?
<?php
$str = addslashes('What does "yolo" mean?');
echo($str);
?>
<?php
$str = addslashes('What does "yolo" mean?');
echo($str);
?>
A. What does /”yolo/” mean?
B. What does ”Yolo” mean?
C. What does ”yolo” mean?
D. None of the above
Answer: Option C
wrong anwser!