'Write a PHP program to print alphabet pattern 'C'
<?php for ($row=0; $row<7; $row++) { for ($column=0; $column<=7; $column++) { if (($column == 1 and ($row != 0 and $row != 6)) or (($row == 0 or $row == 6) and ($column > 1 and $column < 5)) or ($column == 5 and ($row == 1 or $row == 5))) echo "*"; else echo " "; } echo "\n"; } ?>
Sample Output:
*** * * * * * * * ***
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Sample Output:
need an explanation for this answer? contact us directly to get an explanation for this answer