can any one kno this equation?????
By krutimodi
@krutimodi (4)
India
3 responses
@hollowheart (1572)
• India
19 May 07
Hi Kruti, i think u r a born genius. Well i know indians are having the srongest brains, but i never thought that maths was so complicated though i am too weak in it. can i get some clues please ? :)
@EsperShiva (11)
• United States
19 May 07
(As far as I can tell) This isn't actually a math question but a programming question (either C or C++ I'd imagine).
1 person likes this
@steve9737 (918)
• Colombia
20 Jun 07
I think it looks like a c++ equation, it would be that be is equal to the add between the variable a increase in one, and less a increase in one add the variable a increase in one, be is another variable to store a value temp, I am not good in math but I think it definitely something about programing language, I think I would be write like, be = (a+1) - (a-1) + (a+1), I think it would be a option, you are not clear if is is math or programing language and which programing language if it is the case, I hope you can answer and say if it is that you mean, so is it math or programming language, if it is math I would ask to my girlfriend, because she have a degree in math, but if it is programing language, I think my answer is correct.
@EsperShiva (11)
• United States
19 May 07
It is indeterminable. You are guaranteed that a will be incremented before the next sequence point(i.e. semicolon), but there is no way to actually tell whether or not a has been incremented by time it reaches the next operator++(). Therefore you cannot determine the value of either a or b. In general it is bad programming: avoid it.