In C, if a=300*300/300; then what is output of printf("%d",a); | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 7

In C, if a=300*300/300; then what is output of printf("%d",a);

Hint:Run the program turbo c and see the actual result https://code.sololearn.com/ceqdzl96VJ37/?ref=app

15th Sep 2019, 5:04 PM
Vachaspati Annaldas
Vachaspati Annaldas - avatar
46 Answers
+ 19
You're probably using a two byte integer to store the answer. A little more detail about what it's probably doing: 300 = 0000000100101100 (9 bits required) 300 * 300 = 90000 = 10101111110010000 (17 bits required! Uh oh!) So, because it won't fit into 16 bits, you lose the 1st bit, which is set to a 1. You might actually be losing the 1st two bits, if it's a signed short value, but we can't be sure. Anyway, your result gets truncated into 16 bits: 0101111110010000 = 24464 Next, when you divide by 300, you get: 24464 / 300 = 81.54666... And since it's not a floating point number, it's truncating it to 81. You may be able to avoid this problem by changing your calculation to: 300*(300/300) That's mathematically the same, but won't overflow the bytes. this question is Google interview question you also can check the answer in google
16th Sep 2019, 3:48 AM
Vachaspati Annaldas
Vachaspati Annaldas - avatar
+ 5
Here operator * and / have same precedence but here associative will be from left to right... first 300 * 300 then 90000 / 300 then your output is 300.
15th Sep 2019, 5:59 PM
Ankur
Ankur - avatar
+ 5
*/+- First multiply 300 and 300 then divided it with 300. 300*300=90000/300=300
16th Sep 2019, 7:18 PM
Aung Thiha
Aung Thiha - avatar
+ 3
Vachaspati Annaldas let's try this another way... try using pencil and paper leave your turbo c off...
16th Sep 2019, 3:25 AM
BroFar
BroFar - avatar
+ 2
Vachaspati Annaldas where in your question or code does it say anything about converting to bits ??? https://ibb.co/5ckx8v2
16th Sep 2019, 4:17 AM
BroFar
BroFar - avatar
+ 2
i now see your argument and instead of creating this thread you should have explained this as a direct question from stackoverflow... again comparing apples and oranges so both answers are correct ... https://stackoverflow.com/questions/7106702/gcc-and-tc-giving-different-outputs
16th Sep 2019, 4:40 AM
BroFar
BroFar - avatar
+ 2
Pathik Patel there's no mathematics rule that says divide first - if both are present in an equation, you do it from left to right.
16th Sep 2019, 12:47 PM
HNNX 🐿
HNNX 🐿 - avatar
+ 2
Try a=200/300*300 and see if the answer is what you expect.
17th Sep 2019, 5:17 AM
Sonic
Sonic - avatar
+ 2
self answered questions that was really who marked it as best ; a great individual he/she might be
17th Sep 2019, 2:20 PM
Aditya
Aditya - avatar
+ 1
Vachaspati Annaldas But it's still 300
15th Sep 2019, 5:59 PM
Airree
Airree - avatar
+ 1
No, it isn't, I don't see how it would ever equal 81, this really complicated equation has an obvious answer.
15th Sep 2019, 6:09 PM
Airree
Airree - avatar
+ 1
Answers=300 As mathematics rules first divide second multiply third addition and last subtraction 300/300 =1 300*1=300
16th Sep 2019, 1:28 AM
Pathik Patel
Pathik Patel - avatar
+ 1
This code result is 81 use C basic concept not use the maths concept. Hint: To Multiplication and Division use binary value of 300
16th Sep 2019, 2:24 AM
Vachaspati Annaldas
Vachaspati Annaldas - avatar
+ 1
Vachaspati Annaldas verses repeating this over and over - show us an actual screenshot with code and answer displayed... otherwise this discussion is mute. All you have proven so far is SoloLearn has the right answer and turbo c is flawed... 300 * 300 = 90000 / 300 = 300 Really simple math using the basics of pedmas left to right and even going from right to left which is not normal... 300 / 300 = 1 * 300 = 300
16th Sep 2019, 2:39 AM
BroFar
BroFar - avatar
+ 1
Well, I don't think I would say, "so both answers are correct." Both answers are what the programs compiled by the respective compilers would give you. However, I think we'd agree that the truly correct answer is what mathematics say (300). You can blame Turbo C's erroneous answer on it not using enough bits for int or the programmer for not accounting for a possible overflow and thus not using the right type. That's the view from where I sit.
16th Sep 2019, 5:11 AM
Jojo
Jojo - avatar
+ 1
Thanks for the question (and solution), it was quite interesting. I would just be careful with saying 81 is the right answer. The right answer, as said by many here, is 300. The compiler gives you the wrong answer due to the overflow...
17th Sep 2019, 7:30 AM
Edophokles
Edophokles - avatar
+ 1
The output is 300 with return 0; the * is take Preference ✌
17th Sep 2019, 8:50 AM
Shwan Youssif
Shwan Youssif - avatar
+ 1
Stdio first answer
17th Sep 2019, 4:18 PM
Manish
Manish - avatar
+ 1
300
18th Sep 2019, 12:31 AM
Manish
Manish - avatar
0
It works just fine, 300 ^ 2 / 300 ^ 1 equals 300 ^ (2 - 1), which is 300 in my opinion.
15th Sep 2019, 5:16 PM
Airree
Airree - avatar