">
<?php$p = 10;while (--$p > 0){ $p++; print $p; print "INDIA";}?>
p is decremented in the first while execution and then continuously incremented back.
Previous Question Next Question
Your comments will be displayed only after manual approval.