C_21 Operators Precedence and Associativity in C | C programming Tutorials

Поделиться
HTML-код
  • Опубликовано: 2 янв 2021
  • In this Video, I have discussed Operators Precedence and Associativity in C Language.
    Best C Programming Tutorials : • Programming in C
    *******************************************
    Connect & Contact Me:
    My Second Channel Link: bit.ly/354n7C7
    Facebook: / jennys-lectures-csit-n...
    Quora: www.quora.com/profile/Jayanti...
    Instagram: / jayantikhatrilamba
    Twitter: / khatrijenny
    *********************************************
    More Playlists:
    C++ Programming Tutorials: • Lec 1: How to Install ...
    Placement Series: • Placements Series
    Data Structures and Algorithms: https: • Data Structures and Al...
    Design and Analysis of Algorithms(DAA): • Design and Analysis of...
    Python Full Course: • Python - Basic to Advance
    Printing Pattern in C: • Printing Pattern Progr...
    Dynamic Programming: • Dynamic Programming
    Operating Systems: // • Operating Systems
    DBMS: • DBMS (Database Managem...
    #cprogramming #jennyslectures #programming #clanguage
    #operatorsinc

Комментарии • 502

  • @whathuh6965
    @whathuh6965 Год назад +9

    You're really good at explaining things clearly. Good job.

  • @yeshwanthrajsp5876
    @yeshwanthrajsp5876 3 года назад +12

    teaching "extraordinary, fanstatic and mind blowing mam salute mam😇"

  • @herteert299
    @herteert299 Год назад +2

    Your work is awesome Mama. Your courses of the C language are the best I found on the internet.

  • @freakraajpubg2626
    @freakraajpubg2626 3 года назад +4

    Watched your whole ds algo videos...
    Really helpful for me..
    Keep making such videos🙏

  • @saibalam7852
    @saibalam7852 3 года назад +3

    Mam ur teaching is marvelous this is what a beginner expects

  • @chandrashekarr1977
    @chandrashekarr1977 3 года назад +3

    Nice one. Thank you.
    This part need more clarification and workouts as most of the entrance exams have bunch of questions from this area.
    To my knowledge, none of the books in market covering this area fully. There is always a grey area where people get confusions.
    If possible, please comeup with more videos with more sample questions from placement question papers and show with step by step explanation in detail. Thanks once again.

  • @shrur3527
    @shrur3527 2 года назад +2

    dear mam thank you will be very less for your videos , praying for all happiness n success to u n to ur family , i m benefited a lot by your videos , you are an excellent teacher

  • @nithiya8418
    @nithiya8418 3 года назад +31

    Mam ur DS playlist really helped me a lot for exam prep... please make a playlist for Computer architecture also mam... the subject sounds so vague pl help mam... 🙏🙂

  • @tusharsonawane3530
    @tusharsonawane3530 Год назад +4

    Excellent teaching mam , no words for your teaching

  • @surendrapuppala1607
    @surendrapuppala1607 3 года назад

    Best teacher i have ever seen

  • @Dr._Aniekan_udo
    @Dr._Aniekan_udo Год назад +58

    Ans = -2
    - -a * (5+b) / 2 - c++ * b
    - -a * 6 / 2 - - 1 * b (#(),++,#)
    - 1 * 6 / 2 +1 * b (#- -, -,# )
    - 3 + 1 (#* ,/ ,*#)
    - 2 (#+#)
    Operation done on the previous line is commented with # inside the bracket in the new line, in other of operation precedence and separate by non-computing commas.
    I didn’t use compiler anyways, but you are free to point out mistakes if found😅

    • @omarfaruque1095
      @omarfaruque1095 Год назад +5

      You didn't increment the value of c by 1.

    • @Dr._Aniekan_udo
      @Dr._Aniekan_udo Год назад +8

      @@omarfaruque1095 it was a post increment, so c was evaluated before being incremented, as such it remain as -1 as shown in the second line

    • @adedejiafeez1238
      @adedejiafeez1238 Год назад +3

      @@Dr._Aniekan_udo apt. Followed the same reasoning and compiled to verify my answer

    • @kennedychukwu4152
      @kennedychukwu4152 Год назад +3

      I think it's after the program runs for the first time, then when it runs the second time it will increment to 1 because it's a postfix. That's how the postfix program runs. If it was a prefix it will increment from 0 to 1 the first time it runs.

    • @Narratesmart
      @Narratesmart Год назад +2

      Thank you sir

  • @memcraft_gsr4
    @memcraft_gsr4 3 года назад +1

    Thank you so much mam
    aap kitna hard work karti h mam

  • @manvendra91102
    @manvendra91102 3 года назад +3

    Best teacher ever

  • @shivangikumari2231
    @shivangikumari2231 Год назад +167

    --a*(5+b)/2-c++*b
    --0*(5+1)/2-(-1)++*1
    Firstly we evaluated which is written in bracket
    --0*6/2-(-1)++*1
    Now we evaluate postfix increment op
    --0*6/2+1*1
    We write +1 bcz in postfix firsly value assigned then value incremented
    After postfix increment we evaluate prefix decrement
    -1*6/2+1*1
    We know that * and / has same precidence and associativity is from left to right
    -6/2+1*1
    -3+1*1
    We know that +has lower precidence than * then * evaluated first
    -3+1
    =-2
    Hence answer is -2

    • @ShubhamSharma-zq2xn
      @ShubhamSharma-zq2xn 10 месяцев назад +16

      For me it's the ever most helpful comment, that I ever read on this earth. Ya, there are some gems on earth, in which you are the one. Smile because you're unique. Thanks for helping me out to understand it in form of a comment 😊

    • @aakashyericharla8668
      @aakashyericharla8668 10 месяцев назад +11

      can you explain the post fix increment. -1++ is 0 right?

    • @shivangikumari2231
      @shivangikumari2231 10 месяцев назад +8

      @@aakashyericharla8668 no this is not right bcz in postfix firstly we put value then incremented
      That means (-1)++=-1

    • @kkkkkkk754
      @kkkkkkk754 10 месяцев назад

      Hi, can u explain what is post increment and dercrement after the step of 5+1 pls. I am school student.. I will be grateful

    • @shivangikumari2231
      @shivangikumari2231 10 месяцев назад +4

      @@kkkkkkk754 in post increment we firstly assigned the value then incremented.
      Eg. int a=2;
      printf("a=%d",a++);
      It gives output a=2 then a becomes 3.
      In post decrement we firstly assigned the value then it is decremented .
      Eg. int a=2;
      printf("a=%d",a- -);
      It gives you the output a=2 then a becomes 1.
      Hints:-
      Incremented means plus 1
      Decremented mean minus 1

  • @sumitkhursange2673
    @sumitkhursange2673 3 года назад +19

    Mam your videos is easily understandable for me on RUclips platform... Thank you mam for this course🙏

  • @emiliarose1980
    @emiliarose1980 23 дня назад

    Big thanks to you ma'am , what a smoothness and how u can transmit ur knowledge is just amazing 👏 👌 ❤

  • @stylingdancer6619
    @stylingdancer6619 3 года назад +1

    Thank you mam for the owsmful video🙏❤️

  • @BITPrateektrivedi
    @BITPrateektrivedi 3 года назад +16

    Waiting from last 5 days.. Happy to see you in my notification 🙂🙂

  • @HariomSingh-nc6uh
    @HariomSingh-nc6uh 2 года назад +1

    Maam u r soo cute
    And through your teaching pattern I'll learn more and more....
    U r amazing😍
    Love from FoET lucknow CSE(AI). ❤

  • @girishkulkarni3537
    @girishkulkarni3537 10 месяцев назад

    I have seen c programming topic video. Amazing presentation.

  • @shivanshgoyal310
    @shivanshgoyal310 3 года назад +1

    Great going mam 🔥🔥

  • @nasirrashid7898
    @nasirrashid7898 3 года назад +1

    I usually watch your videos they so well and I like them. thanks so much.
    I would ask you do you know anyone who would teach me data structure and java programming. I'm going to pay for the service.

  • @prakhar381
    @prakhar381 3 года назад +2

    Thankyou very much❤️

  • @036rahulmishra9
    @036rahulmishra9 3 года назад

    Nice maam ur inspiration for me

  • @18fatima15
    @18fatima15 4 месяца назад +1

    11:03 #include
    int main()
    {
    int a=0,b=1,c=-1;

    printf("%d",--a*(5+b)/2-c++*b);
    return 0;
    }
    output: -2
    working: --a*(5+b)/2-c++*b => -1*6/2+1*1 => -3+1 => -2

  • @Vanisingh03
    @Vanisingh03 3 года назад +1

    Thanks a lot ma'am 😍😍😇😇

  • @sagar1216
    @sagar1216 3 года назад +5

    Videos are good as talking about the explanation, but I am wishing project based tutorial as these videos totally like as some online Computer Engineering Quick Guides. If you could do it I would be very thankful to you ,MAM!, as I am just in 9th. Please..

  • @Rockyyyyyyy524
    @Rockyyyyyyy524 9 месяцев назад

    My thanks goes to u mam

  • @gayathri4195
    @gayathri4195 3 года назад

    Thank you mam👍❣️

  • @uttej1390
    @uttej1390 3 года назад

    Thank u very much mam ❤️❤️❤️❤️❤️❤️❤️

  • @rockystephenp3529
    @rockystephenp3529 2 года назад

    Thank you so much

  • @susova2432
    @susova2432 Год назад +13

    --a will decrement the value of a by 1 and return the new value (-1).
    5+b will add 5 to the value of b (which is 1) and return 6.
    --a*(5+b) will multiply the result of step 2 by the result of step 1, which gives -6.
    /2 will divide the result of step 3 by 2, which gives -3.
    c++ will return the current value of c (-1) and then increment it by 1 (to become 0).
    c++*b will multiply the result of step 5 by the current value of b (which is 1), which gives 0.
    -3-0 will subtract the result of step 6 from the result of step 4, which gives -3.
    Therefore, the output of the expression --a*(5+b)/2-c++*b will be -3.

    • @ElectricalsSolutions
      @ElectricalsSolutions Год назад +1

      but -2 is given by computer

    • @sudheerkimidi
      @sudheerkimidi Год назад +5

      ​@@ElectricalsSolutions -3+1 will become -2

    • @manojess
      @manojess Год назад

      Wrong

    • @manojess
      @manojess Год назад +4

      C++ means post increment so value of c used is -1 but in output in you print c you will get zero. In program c=-1 will be used. Now you will get -2 as the answer.

  • @tps8470
    @tps8470 2 года назад +8

    Ans is -2
    Thanks a lot Mam

  • @izel_5
    @izel_5 10 месяцев назад

    Thank you ❤

  • @CitizenWarwick
    @CitizenWarwick Год назад

    Hey Jenny did you make a video how to deal with functions? Thanks!

  • @xiiscb-42subhalakshmisarka41
    @xiiscb-42subhalakshmisarka41 Год назад +3

    Am getting -3 as the ans

  • @sachingupta-nm3vx
    @sachingupta-nm3vx 3 года назад

    ta mam...lecture was quite good

  • @MahirRashid-ih1nz
    @MahirRashid-ih1nz Год назад

    thanx you are great well madam.....

  • @electronics_funda
    @electronics_funda 3 года назад +1

    Nice teach mam ❤️❤️

  • @rahulpandey9479
    @rahulpandey9479 3 года назад +1

    Thank you

  • @Kulgt
    @Kulgt 3 года назад +2

    Happy New Year Madam G.. Thanks Jii

  • @shacks05
    @shacks05 3 года назад +3

    I kindly Request . To Pls Make Videos on Python As soon as possible mam ❤️ . Because we are Addicted to u 🙏☺️

  • @Pramiti_Choudhury
    @Pramiti_Choudhury Год назад +4

    do we have to learn this???to solve, but how will i learn such a big table? any short trick? like bodmas or something?

  • @preet5008
    @preet5008 3 года назад +2

    Thank you mam for your effort ...
    #friend_of_minds

  • @sistlachaitanya1222
    @sistlachaitanya1222 3 года назад +1

    Hatsoff for ur hardworking.

  • @hulkcochulk6486
    @hulkcochulk6486 Год назад +2

    int a=0,b=1,c=-1;
    - -a * (5+b)/2 - c+ + * b.................. ['/ ' is higher precedence than '*']
    -1 * 3 - -1 * 1.......................... [value of a will increment first , c is now incremented to 0{-1+1=0}]
    -3 - -1..................['*' have higher precedence value than '-']
    -3 + 1 = -2 ( output)

  • @priyanshunandan9648
    @priyanshunandan9648 3 года назад +8

    Great Guide ma'am
    Keep Spreading knowledge 🥰

  • @kakhil1843
    @kakhil1843 Год назад

    super i love you for ur teaching🥰🥰🥰🥰🥰🥰🥰🥰

  • @hadieudonne433
    @hadieudonne433 3 года назад +29

    Welcome Back and HnewY 2021 Lecturer Jenny, wish you higher advancement in this year and I promise you to be a good programer because of you.
    Step by step any thing is possible

    • @hadieudonne433
      @hadieudonne433 3 года назад

      Thank you so to press like on my comment, now I want to invite you if possible to press follow on my instagram which is instagram.com/hadieudonne43 🤦🤦🤦🙏

    • @prakashvenkat7630
      @prakashvenkat7630 2 года назад

      ruclips.net/video/qI29eAhdJIc/видео.html

  • @archittiwarii
    @archittiwarii 3 года назад +4

    Mam thanks 😊 .
    I m beginner 🔰 mam give a video how to start

  • @thisisgyan
    @thisisgyan 3 года назад

    Thanks...

  • @shakibsaifi6053
    @shakibsaifi6053 4 месяца назад

    Thank you mam 😀

  • @user-xb1lk5cw1g
    @user-xb1lk5cw1g 8 месяцев назад

    Thank you so much mam😊😊😊😊😊

  • @everyone307
    @everyone307 Год назад

    Good explanation mam

  • @aayushthakur6159
    @aayushthakur6159 3 года назад +150

    Q . --a * (5 + b) / 2 - c++ * b
    given a = 0, b = 1, c = -1;
    ans = -2
    explaination-
    firsty bracket will be evaluated
    so it will give 6
    now evaluate --a, it will give -1 since we are pre decrementing 0
    now, -1*6 = -6
    now -6/2=-3
    then -3 - (-1)*b(due to post fix the value of c will remain same )
    will give -3 +1*1(since b is given as 1)
    hence -3+1=-2 ans

    • @saikrishna8431
      @saikrishna8431 3 года назад +14

      After brackets c++ na postfix increment has higher precendence that. Prefix

    • @sentongohamza7936
      @sentongohamza7936 3 года назад +1

      Thnx for ur gd expln abt the c++

    • @rutujajadhav1782
      @rutujajadhav1782 3 года назад +4

      Wrong ans

    • @SchooloDoodlo
      @SchooloDoodlo 3 года назад

      He is right you can compile it

    • @lyricist3845
      @lyricist3845 3 года назад +33

      @@rutujajadhav1782 I got -3? is it correct

  • @adarshsensingh
    @adarshsensingh Год назад +1

    Mam how to decide the step is L to R, or R to L if both associativity is involved in ques

  • @Rockyyyyyyy524
    @Rockyyyyyyy524 9 месяцев назад

    Super teaching mam

  • @codanikesh5317
    @codanikesh5317 Год назад

    Thank you sow Match miss

  • @d.shabanaz337
    @d.shabanaz337 3 года назад +4

    Sister plz Jarvis Al tell us how to do as your teaching is very understandable and interesting and easy to learn

  • @abhishekkumarjha4314
    @abhishekkumarjha4314 2 года назад

    Tqq Mam.

  • @sanatanmahato7341
    @sanatanmahato7341 Год назад +3

    -2 is my final answer
    a= -1
    b= 1
    c= 0
    If it is right please let me know jenny mam

  • @chinninaresh2314
    @chinninaresh2314 3 года назад

    Thanks madam

  • @chaitanyapaidi7396
    @chaitanyapaidi7396 3 года назад +5

    I just watched your previous videos of many months before and you know what you have become chubby and cute 😍😍❤️.....love from South India ❤️❤️🔥

  • @world.of.october
    @world.of.october 3 года назад +1

    so basically we check the associativity (if of the same priority) from the expression

  • @atharvraj
    @atharvraj 3 года назад

    Osm vedio mam

  • @yogasankar2032
    @yogasankar2032 3 года назад +1

    Madam please upload solving towers of honoi problem in data structures

  • @rogue.freaks9860
    @rogue.freaks9860 Год назад

    Mam why the associativity of ?: is right to left in ternary operators we first check condition which is left to right

  • @shubhamranjan2383
    @shubhamranjan2383 3 года назад

    Happy New Year mam 🎈🎈

  • @TUCSARVINDKUMARS
    @TUCSARVINDKUMARS 3 года назад +1

    I was learning from u r vedios only mama

  • @chinnulohithh1887
    @chinnulohithh1887 2 года назад +4

    Mam can u give a more clarity about postfix and prefix with an example

  • @sanusain4989
    @sanusain4989 3 года назад +5

    Mam discuss about Python course step by step please.....🙏🙏🙏🙏🙏

  • @trioksk3930
    @trioksk3930 3 года назад +1

    mam please consider explaining functions and storage classes in c prog..... mam please please please 👨‍🎓👨‍🎓

  • @amankumarsingh4924
    @amankumarsingh4924 2 года назад

    Mam aap English kitna simple bolte ho 👌👌🤗🤗

  • @d.shabanaz337
    @d.shabanaz337 3 года назад +5

    Sister after c++ course jarvis Al mam plz

  • @1shAggarwal
    @1shAggarwal 2 года назад +46

    You have a great way of teaching but i want to say that I laugh 🤣 when you scream 'now' out of nowhere 😆.

  • @maviya1385
    @maviya1385 3 года назад

    .mam I have doubt that is ,- 1 is a operator or a character...

  • @adityaprakash6248
    @adityaprakash6248 Год назад +3

    I could not solve why when a=0, b=1, c=-1 why --a*(5+b)--c++*b comes out to be -2

  • @Ganesh222
    @Ganesh222 Год назад +1

    You are a very experienced and skill in teaching mam .... really

  • @farhanpathan4167
    @farhanpathan4167 9 месяцев назад

    How can we understand between uneary + - and binary + - how can we find difference

  • @prathamshirke7450
    @prathamshirke7450 3 года назад +3

    Mam add more languages like C++ and JAVA please

  • @artwithakshita
    @artwithakshita 3 года назад +1

    Ma'am it your eighth video of variables
    Ma'am when I run the programm using the variable: sum$12, it worked... however when I used % or sum%12 as a variable name it was showing error
    kindly help

    • @musicstand997
      @musicstand997 3 года назад

      Yeh kaise hoga $ yeh symbol hain or + ek operator hain variable declaration time pe pre define keywords use nahi ker shakte

  • @latasharma7328
    @latasharma7328 3 года назад

    What about square bracket and curly bracket

  • @BodhiiDharma
    @BodhiiDharma 10 месяцев назад +19

    Shortcut to remember the operator precedence table in C…
    Use PUMA' S REBL TAC. ( spell "REBL" as if "REBEL").
    (Note: all operators with associativity not specified is left to right).
    P - Primary
    U - Unary
    M - Multiplicative
    A - Additive
    S- Shift
    R- Relational
    E- Equality
    B- BitWise ( & > ^ > |)
    L- Logical ( logical && > logical ||)
    and the last three operators are
    T- Ternary
    A- Assignment
    C- Comma
    If you need a shortcut for Assosiativity then "AUTo rides in the right side", meaning Assignment, Unary and Ternary operators are Right to Left, O is added for completion)

  • @tellalavanya3819
    @tellalavanya3819 8 месяцев назад

    answer is -2 mam
    for the last expression

  • @saikiranreddy8135
    @saikiranreddy8135 3 года назад +1

    Mam do videos on python programming language

  • @SahasraMuthyam
    @SahasraMuthyam 17 дней назад

    What is the difference between uniary + and binary +

  • @ashishxsoni
    @ashishxsoni 9 месяцев назад

    Gr8

  • @TUCSARVINDKUMARS
    @TUCSARVINDKUMARS 3 года назад +2

    When u will finish this c programming

  • @kadharhussan1940
    @kadharhussan1940 Год назад

    Good

  • @karthickambrish
    @karthickambrish 3 года назад +8

    Awesome sister.... After C language kindly update a Playlist on oops based language C++ that would be more helpful sister... Thank you..

  • @mudassarhashmi992
    @mudassarhashmi992 2 года назад

    Looking gorgeous mam🥰😍

  • @brindhavenugopal4395
    @brindhavenugopal4395 3 года назад +1

    12.30-( answer is -2 mam)

  • @yaswanthkurapati2651
    @yaswanthkurapati2651 3 года назад

    How can we know that it is prefix or postfix operator .. Time 6:19

  • @rkyadav6483
    @rkyadav6483 3 года назад

    Love you mam

  • @lakshmim2424
    @lakshmim2424 Год назад

    a-b/c(c*d$e) mam how to solve this question 🤔 does * and $ have same precedence

  • @devilaj1021
    @devilaj1021 3 года назад +2

    Mam please check priority of postfix (++ and --) is left to right or right to left?????

  • @ajayyadav-xl4ix
    @ajayyadav-xl4ix Год назад

    good

  • @hemanthramkumar1000
    @hemanthramkumar1000 2 года назад

    Madam ur looking osm🔥🔥

  • @aniketadhalrao9023
    @aniketadhalrao9023 Год назад

    int ans;
    int a = 1;
    int b = 1;
    int c = 0;
    ans = a++ || b++ && c++;
    mam is case me b and c ki value increment nhi ho rhi h...
    && ki precedence high h to wo pehle solve hona chahiye tha na..
    but a increment krke logical or ka 1st true h esliye compiler aage ko nhi jaa rha h?

  • @anjanhalder7164
    @anjanhalder7164 2 года назад +21

    What is the output? Mine is -3