The order of precedence MDAS

Discussion in 'C' started by Player, Jan 21, 2009.

  1. Player

    Player New Member

    Joined:
    Aug 3, 2007
    Messages:
    37
    Likes Received:
    0
    Trophy Points:
    0
    Hi all.

    I have been here before but not for a while. I hope my question is in the right section :). I am new to learning C and seem to be picking it up and enjoying it. I am a little confused about how the order of precedence works. I have wrote the following simple program but can't workout how the compiler gets it answer. I have shown my workings using the MDAS rule but i'm stuck. Sorry to all the professionals out there at what may seem a dumb question but i really want to understand everything i'm learning.

    Thanks for reading :)
    Code:
    #include<stdio.h>
    int main()
    {
        printf("Answer=%d\n",18/9-2+6*2);
    
        /*               18/9-2+6*2
                          18/9-2+12
                          2-2+12
                          2-14
                          my answer = -12
                          compiler = 12*/
    
        printf("Answer2=%d",12-32/2*8+10);
    
        /*               12-32/2*8+10
                          12-32/16+10
                          12-2+10
                          12-12
                          my answer = 0
                          compiler = -106*/
                         
        return(0);
    }
     
    Last edited by a moderator: Jan 22, 2009
  2. xpi0t0s

    xpi0t0s Mentor

    Joined:
    Aug 6, 2004
    Messages:
    3,009
    Likes Received:
    203
    Trophy Points:
    63
    Occupation:
    Senior Support Engineer
    Location:
    England
    The order of multiple equal precedence operators is left to right, just as in maths. So 2-2+12 is not 2-(2+12) but (2-2)+12.

    So the first is 18/9-2+6*2= 2-2+12= 0+12= 12.

    Similarly 12-2+10=(12-2)+10, not 12-(2+10), and 32/2*8=(32/2)*8 not 32/(2*8), so 12-32/2*8+10= 12-16*8+10= 12-128+10= -116+10= -106.

    So you seem to be working right-to-left for some reason. Some things in C work that way, but expression evaluation isn't one of them.
     
    shabbir likes this.
  3. Player

    Player New Member

    Joined:
    Aug 3, 2007
    Messages:
    37
    Likes Received:
    0
    Trophy Points:
    0
    Thanks you very much for your answer. This has made it a lot clearer. I was looking at the following and i guess i miss understood :). I'm sure i will be back with more questions in the not too near future.

    Thanks again.
     
  4. xpi0t0s

    xpi0t0s Mentor

    Joined:
    Aug 6, 2004
    Messages:
    3,009
    Likes Received:
    203
    Trophy Points:
    63
    Occupation:
    Senior Support Engineer
    Location:
    England
    You didn't get right-to-left from that page, because is presents left to right evaluation: 100+10-20 -> 110-20, not 100-10. Also it shows 5*2 evaluated before 60/3, again in left to right order.
     
  5. Player

    Player New Member

    Joined:
    Aug 3, 2007
    Messages:
    37
    Likes Received:
    0
    Trophy Points:
    0
    I have miss understood that then too. The important bit is that i now understand it from your explination. I have tested myself with long random sums and i'm getting it right everytime now. Again, many thanks for taking the time to explain.:)
     
  6. shabbir

    shabbir Administrator Staff Member

    Joined:
    Jul 12, 2004
    Messages:
    15,375
    Likes Received:
    388
    Trophy Points:
    83
    I removed the attachment from this post as I did not see anything related to it in the post
     
  7. xpi0t0s

    xpi0t0s Mentor

    Joined:
    Aug 6, 2004
    Messages:
    3,009
    Likes Received:
    203
    Trophy Points:
    63
    Occupation:
    Senior Support Engineer
    Location:
    England
    "I was looking at the following" referred to the attachment.
     
  8. Player

    Player New Member

    Joined:
    Aug 3, 2007
    Messages:
    37
    Likes Received:
    0
    Trophy Points:
    0
    I was just trying to show how i had gone wrong. I was doing the following:

    I was going to the multiflication first as in.

    12-25/5+7*2
    12-25/5+(14)

    Then the division

    12-(5)+14

    Then the addition

    12-(19)

    Then the subtraction

    12-19=-7

    But now i know its.

    12-25/5+7*2

    12-5+14=21

    Thanks again, i hope i have made myself clear as to where i was going wrong.
     
  9. asadullah.ansari

    asadullah.ansari TechCake

    Joined:
    Jan 9, 2008
    Messages:
    356
    Likes Received:
    14
    Trophy Points:
    0
    Occupation:
    Developer
    Location:
    NOIDA
    See inline message .....
    Remeber one thing only " Capture the higher precendency operator it may be more than one If it is then go for operation on that operator which if in the left means operation should be from left to right on same precedence Operators"
     
    Last edited: Jan 23, 2009
  10. Player

    Player New Member

    Joined:
    Aug 3, 2007
    Messages:
    37
    Likes Received:
    0
    Trophy Points:
    0
    I was working multiplication first before division. I was working from left to right but skipping division if i came across it first. I didn't realise that M and D was the same precedence and A and S was also the same. I was putting them in order 1=M 2=D 3=A 4=S instead of 1=M&D 2=A&S.
    I hope this has cleared this up, i certainly understand it now thanks to you guys :)
     

Share This Page

  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.
    Dismiss Notice