"/>
<?phpfunction string(){ echo strstr("Hello world!", 111);}string();?>
<?php
function string()
{
echo strstr("Hello world!", 111);
}
string();
?>
o world!
Hello world!
111
No Output
View Answer
Workspace
Share
Copy Text
Copy URL
Answer : Option A
Explanation :
111 is the ASCII value of o.
Be The First To Comment