<?php$p = 22;$q = 5;$r = 4;echo $p % $q % $r;?>
The expression is considered as ($p%$q)%r in this case (22%5)%4 which is 2.
Previous Question Next Question
Your comments will be displayed only after manual approval.