1.

Write a php program to print star (*) in a single line?

Answer»

<?php

for($x = 1;$x < 10;++$x)

{

print"*\t";}

?>



Discussion

No Comment Found

Related InterviewSolutions