Ask your own question, for FREE!
Computer Science 18 Online
OpenStudy (anonymous):

3PQ+2QR-2PR/3Q IN C++ expression

OpenStudy (e.mccormick):

Remember that in c/c++ there is no assumed multiplication. For example: int A = 5; int B = 2; int C = AB; Would generate an error that AB is undefined. That is because AB is a new variable, not the multiplication of A and B. The solution is: int C = A*B;

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!