StoneColdCrazy
Programmer
case 1). int a = 50*20;<br>case 2). int b=50, c=20, a=b*c;<br><br><br>When we compile that, will the resulting code in case one be a=1000 or will the code multiply 50*20 in order to get the number? Same question about case 2... <br>??<br><br>Is there a mandatory rule about this to all C or C++ compilers?