I am currently learning C Programming ( my first programming language ). I am a little bit confused with the operators precedence. Arithmetic operators precedence are as follows.

  1. *
  2. /
  3. %
  4. +
  5. -

This is what is given in my book at least. What i am confused is about how do i go solving expressions when it comes to my theory exams ? I tried solving many expressing with the order given above but fail to get a correct answer.

Given the following definitions:

int a = 10, b = 20, c;

How would we solve this expression?

a + 4/6 * 6/2 

This is an example in my book.

link|improve this question

I've never heard of a \ operator. Are you sure you're learning C and not PHP? – Kerrek SB Feb 3 at 11:02
@KerrekSB Damn! that was supposed to be /. Sorry, got confused. Have been studying from morning. – 912M0FR34K Feb 3 at 11:03
4  
You need to accept some answers to your previous questions. With an accept rate of 25% nobody is going to help you. – Graham Borland Feb 3 at 11:06
1  
@GrahamBorland : I did, Thank you. – 912M0FR34K Feb 3 at 11:10
1  
@912M0FR34K: Then it's time for a break! Programming is all about being pedantic and paying attention to detail. Take a walk and get a coffee, and it'll all be easier afterwards. – Kerrek SB Feb 3 at 11:11
show 1 more comment
feedback

3 Answers

up vote 3 down vote accepted
    a + 4/6 * 6/2 
 = 10 + 4/6 * 6/2
 = 10 + 0*6/2
 = 10 + 0/2
 = 10

Note that 4/6 evaluates to 0 as integer division is used.

link|improve this answer
1  
Ah, that's what the OP meant by "solving an expression"!! :D +1 – Armen Tsirunyan Feb 3 at 11:15
feedback

The precedence of / and * is the same in C, just as it is in mathematics. The problem is that in mathematics the following expressions are equivalent, whereas in C they might not be:

(a/b) * (c/d)
(a/b*c) / d

These aren't equivalent in C because if a, b, c, and d are integers, the / operator means integer division (it yields only the integral part of the result).

For example,

(7/2)*(4/5); //yelds 0, because 4/5 == 0
(7/2*4)/5; //yields 2

A general good coding practice is being explicit about your intentions. In particular, parenthesize when in doubt. And sometimes even when you're not.

link|improve this answer
feedback

One safe real life solution is to always use parentheses ( )

link|improve this answer
That is when i am making program's. But i can just simply add parentheses in my exam paper right ? Thanks for the suggestion though. Appreciated. – 912M0FR34K Feb 3 at 11:12
I would add them in an exam :) – andreadi Feb 3 at 11:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.