Question

What is the output of the following program ?

	<?php
	$str = "Learn PHP and \c";
	echo $str;
	?>   
	
A Fatal error
B Compilation error
C Learn PHP and \c
D prints 15
Answer & Explanation
Option: [C]

Unknown escape sequence \c is ignored