<?php$a = 23;$b = 15;$c = 25;echo $a + $b - $c / ($c - $b);?>
First ($c – $b) is evaluated then -$c/($c – $b) is evaluated this which is added to $a + $b therefore we get 35.5.
Previous Question Next Question
Your comments will be displayed only after manual approval.