C_21 Operators Precedence and Associativity in C | C programming Tutorials

Sdílet
Vložit
  • čas přidán 28. 08. 2024
  • 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/...
    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

Komentáře • 509

  • @shivangikumari2231
    @shivangikumari2231 Před rokem +177

    --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 Před 11 měsíci +17

      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 Před 11 měsíci +11

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

    • @shivangikumari2231
      @shivangikumari2231 Před 11 měsíci +8

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

    • @kkkkkkk754
      @kkkkkkk754 Před 11 měsíci

      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 Před 11 měsíci +5

      @@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

  • @aayushthakur6159
    @aayushthakur6159 Před 3 lety +153

    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

  • @BodhiiDharma
    @BodhiiDharma Před 11 měsíci +23

    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)

  • @MINHAJ_MJ
    @MINHAJ_MJ Před 2 lety +3

    Compiler Answer : -2
    but what i understood from your lecture:
    int a=0,b=1,c=-1;
    int k= --a *(5+b)/2-c++*b;
    --a *6/2-c++*b
    --a *6/2-0*b
    -1 *6/2-0*b
    -6/2-0*1
    -3-0*1
    -3-0
    -3
    tell me where i am wrong??

  • @BITPrateektrivedi
    @BITPrateektrivedi Před 3 lety +17

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

  • @Dr._Aniekan_udo
    @Dr._Aniekan_udo Před rokem +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 Před rokem +5

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

    • @Dr._Aniekan_udo
      @Dr._Aniekan_udo Před rokem +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 Před rokem +3

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

    • @kennedychukwu4152
      @kennedychukwu4152 Před rokem +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 Před rokem +2

      Thank you sir

  • @nithiya8418
    @nithiya8418 Před 3 lety +32

    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... 🙏🙂

  • @susova2432
    @susova2432 Před rokem +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 Před rokem +1

      but -2 is given by computer

    • @sudheerkimidi
      @sudheerkimidi Před rokem +5

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

    • @manojess
      @manojess Před rokem

      Wrong

    • @manojess
      @manojess Před rokem +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.

  • @herteert299
    @herteert299 Před rokem +2

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

  • @yeshwanthrajsp5876
    @yeshwanthrajsp5876 Před 3 lety +12

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

  • @sanatanmahato7341
    @sanatanmahato7341 Před rokem +3

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

  • @tusharsonawane3530
    @tusharsonawane3530 Před rokem +4

    Excellent teaching mam , no words for your teaching

  • @tps8470
    @tps8470 Před 2 lety +8

    Ans is -2
    Thanks a lot Mam

  • @emiliarose1980
    @emiliarose1980 Před měsícem

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

  • @whathuh6965
    @whathuh6965 Před rokem +9

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

  • @hadieudonne433
    @hadieudonne433 Před 3 lety +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 Před 3 lety

      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 Před 2 lety

      czcams.com/video/qI29eAhdJIc/video.html

  • @sumitkhursange2673
    @sumitkhursange2673 Před 3 lety +19

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

  • @18fatima15
    @18fatima15 Před 5 měsíci +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

  • @rajshreesharma6778
    @rajshreesharma6778 Před rokem +2

    ans = -3
    is it right ?

  • @freakraajpubg2626
    @freakraajpubg2626 Před 3 lety +4

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

  • @saibalam7852
    @saibalam7852 Před 3 lety +3

    Mam ur teaching is marvelous this is what a beginner expects

  • @chandrashekarr1977
    @chandrashekarr1977 Před 3 lety +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.

  • @Pramiti_Choudhury
    @Pramiti_Choudhury Před rokem +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?

  • @hulkcochulk6486
    @hulkcochulk6486 Před rokem +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)

  • @sagar1216
    @sagar1216 Před 3 lety +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..

  • @shrur3527
    @shrur3527 Před 2 lety +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

  • @HariomSingh-nc6uh
    @HariomSingh-nc6uh Před 2 lety +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). ❤

  • @Pinksky17
    @Pinksky17 Před rokem +2

    Answer is -3.

  • @xiiscb-42subhalakshmisarka41

    Am getting -3 as the ans

  • @chaitanyapaidi7396
    @chaitanyapaidi7396 Před 3 lety +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 ❤️❤️🔥

  • @manvendra91102
    @manvendra91102 Před 3 lety +3

    Best teacher ever

  • @Ganesh222
    @Ganesh222 Před rokem +1

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

  • @khushikumari-fun
    @khushikumari-fun Před rokem +1

    -3 will be correct answer..
    --a * (5 + b) / 2 - c++ * b
    given a = 0, b = 1, c = -1;
    --a * (5 + b) / 2 - c++ * b
    -1*(5+1)/2-0*1 (--a becomes -1,The value of a is updated to -1 becuase its a prefix dcrement and c is postfix increment so it will be update -1 to 0).
    -1*6/2-0*1
    -1*6/2-0
    -6/2-0
    -3 ans................

  • @shacks05
    @shacks05 Před 3 lety +3

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

  • @memcraft_2511
    @memcraft_2511 Před 3 lety +1

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

  • @1shAggarwal
    @1shAggarwal Před 2 lety +49

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

  • @anjanhalder7164
    @anjanhalder7164 Před 2 lety +22

    What is the output? Mine is -3

  • @adityaprakash6248
    @adityaprakash6248 Před rokem +3

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

  • @caymannvelingkar7369
    @caymannvelingkar7369 Před 3 lety +68

    Is FINAL answer -3?

  • @girishkulkarni3537
    @girishkulkarni3537 Před 11 měsíci

    I have seen c programming topic video. Amazing presentation.

  • @archittiwarii
    @archittiwarii Před 3 lety +4

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

  • @chinnulohithh1887
    @chinnulohithh1887 Před 2 lety +4

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

  • @nasirrashid7898
    @nasirrashid7898 Před 3 lety +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.

  • @Kulgt
    @Kulgt Před 3 lety +2

    Happy New Year Madam G.. Thanks Jii

  • @d.shabanaz337
    @d.shabanaz337 Před 3 lety +4

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

  • @user-ow3wq7wf2p
    @user-ow3wq7wf2p Před 7 měsíci

    a=0
    b=1
    c=-1
    --a*(5+b)/2-c++*b ans=0 I dont no answer is correct .
    jeeny mam please the separate voide

  • @surendrapuppala1607
    @surendrapuppala1607 Před 3 lety

    Best teacher i have ever seen

  • @prajwal7257
    @prajwal7257 Před 3 lety

    a=o
    b=1
    c=-1
    --a*(5+b)/2-c++*b
    =0*6/2-c++*b
    =0*6/2-2*b
    =0-2
    =-2
    Ans is -2
    Thanks ma'am

    • @anjanhalder7164
      @anjanhalder7164 Před 2 lety

      Post inc. Will increase value after that statement... That's why -3

    • @VishalAwati18
      @VishalAwati18 Před 2 lety

      @@anjanhalder7164 can u plz elaborate?
      My output is just showing -2

    • @anjanhalder7164
      @anjanhalder7164 Před 2 lety +1

      Ans is -2. I was wrong.

    • @farzanaashraf8136
      @farzanaashraf8136 Před 2 lety

      @Prajwal @Anjan Halder @VISHAL AWATI Please tell me about the --a when the a is an integer and it's value can be -1 after the --a?🤔

    • @Rajendra_kumar39
      @Rajendra_kumar39 Před rokem

      Wrong

  • @priyanshunandan9648
    @priyanshunandan9648 Před 3 lety +8

    Great Guide ma'am
    Keep Spreading knowledge 🥰

  • @d.shabanaz337
    @d.shabanaz337 Před 3 lety +5

    Sister after c++ course jarvis Al mam plz

  • @tellalavanya3819
    @tellalavanya3819 Před 9 měsíci

    answer is -2 mam
    for the last expression

  • @sanusain4989
    @sanusain4989 Před 3 lety +5

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

  • @devilaj1021
    @devilaj1021 Před 3 lety +2

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

  • @stylingdancer6619
    @stylingdancer6619 Před 3 lety +1

    Thank you mam for the owsmful video🙏❤️

  • @prakhar381
    @prakhar381 Před 3 lety +2

    Thankyou very much❤️

  • @kalisthamary1919
    @kalisthamary1919 Před měsícem

    Very use ful
    I need online ' c 'course

  • @srinukanuparthi2500
    @srinukanuparthi2500 Před rokem +2

    Mam u said to tell answers for the questions then please tell the answers for that questions in the next video 😅 Please don't take it as negative mam

  • @hiriharanvm5568
    @hiriharanvm5568 Před 3 měsíci +1

    int main()
    {
    int a = 0, b = 1, c = -1,res;
    res = --a*(5+b)/2-c++*b;
    printf("%d",res);
    return 0;
    }
    ans is -2

  • @karthickambrish
    @karthickambrish Před 3 lety +8

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

  • @brindhavenugopal4395
    @brindhavenugopal4395 Před 3 lety +1

    12.30-( answer is -2 mam)

  • @rossishibis4521
    @rossishibis4521 Před 2 lety +1

    Answer is 3
    Am i right or not?

  • @adarshsensingh
    @adarshsensingh Před rokem +1

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

  • @maryannemuthoni5388
    @maryannemuthoni5388 Před 9 měsíci +1

    int a=0, b=1, c= -1;
    --a * (5+b)/2-c++*b
    Start with brackets and postfix
    --a * 6/2 - -1*b
    Move to prefix
    -1 * 6/2 - -1*b
    Move to multiplication and division
    -3 - -1
    -3 + 1
    Answer is -2

  • @Machine_Forever
    @Machine_Forever Před rokem +1

    My answer is -2

  • @chunchegowda6481
    @chunchegowda6481 Před 2 lety +1

    In manual calculation am getting a value as -3 but in compiler am getting -2, why it's so???

    • @alarezomoosamuyi8526
      @alarezomoosamuyi8526 Před 2 lety +1

      apparently, even if you evaluate c++ first, since it is post fix, the value will remain unchanged in the expression, thus you'll have
      -1 * 6 / 2 - (-1) * 1

  • @subhashreeswainBS-
    @subhashreeswainBS- Před 3 lety +1

    Answer will be -2
    Mam plz reply me wheather it is right or wrong

  • @aniketadhalrao9023
    @aniketadhalrao9023 Před rokem

    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?

  • @Vanisingh03
    @Vanisingh03 Před 3 lety +1

    Thanks a lot ma'am 😍😍😇😇

  • @hardik8974
    @hardik8974 Před 3 lety +2

    Ans is -2.

  • @SahasraMuthyam
    @SahasraMuthyam Před měsícem

    What is the difference between uniary + and binary +

  • @TUCSARVINDKUMARS
    @TUCSARVINDKUMARS Před 3 lety +1

    I was learning from u r vedios only mama

  • @amankumarsingh4924
    @amankumarsingh4924 Před 2 lety

    Mam aap English kitna simple bolte ho 👌👌🤗🤗

  • @uttej1390
    @uttej1390 Před 3 lety +10

    Mam next course plz add c++ course mam 🙏🙏🙏

    • @uttej1390
      @uttej1390 Před 3 lety +1

      Thank u mam for 💓 💓 💓

  • @rogue.freaks9860
    @rogue.freaks9860 Před rokem

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

  • @prathamshirke7450
    @prathamshirke7450 Před 3 lety +3

    Mam add more languages like C++ and JAVA please

  • @Rockyyyyyyy524
    @Rockyyyyyyy524 Před 10 měsíci

    My thanks goes to u mam

  • @world.of.october
    @world.of.october Před 3 lety +1

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

  • @nithinreddyannem4535
    @nithinreddyannem4535 Před 3 lety +2

    Answer is -2

  • @MahirRashid-ih1nz
    @MahirRashid-ih1nz Před rokem

    thanx you are great well madam.....

  • @036rahulmishra9
    @036rahulmishra9 Před 3 lety

    Nice maam ur inspiration for me

  • @krupa1963
    @krupa1963 Před 3 lety +3

    12:40
    Answer : -2

  • @CEIT-RANJITHR
    @CEIT-RANJITHR Před 2 lety +2

    9*6/2+1=28

  • @handekarilingojivarasaikri782

    --a * (5+b)/2 - c++ * b
    Value will be -2

    • @abhirajvv7994
      @abhirajvv7994 Před 3 lety

      How please explain

    • @learncseasily3385
      @learncseasily3385 Před 3 lety

      Areh i compile this code in my laptop it is coming as 1 ..i didnt understood how 1 is coming

    • @handekarilingojivarasaikri782
      @handekarilingojivarasaikri782 Před 3 lety

      @@learncseasily3385 Its -2 not 1.
      You might have compiled it wrongly.

    • @learncseasily3385
      @learncseasily3385 Před 3 lety

      @@handekarilingojivarasaikri782 yes yes i got it by mistakely i have writen -a instead of - - a 😅

    • @prakashvenkat7630
      @prakashvenkat7630 Před 2 lety

      czcams.com/video/qI29eAhdJIc/video.html

  • @kakhil1843
    @kakhil1843 Před rokem

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

  • @user-kb9tz7pp9y
    @user-kb9tz7pp9y Před 3 lety +4

    Pls post the lectures in bulk!!!!if possible!!and u r the best after shukla sir!!

    • @RashidKhan-wj7cp
      @RashidKhan-wj7cp Před 3 lety +1

      Who is Shukla Sir ?
      May I know the channel name ?

    • @aadixya
      @aadixya Před 2 lety

      @@RashidKhan-wj7cp czcams.com/channels/D-scAE4ju78dld1kpcsQfQ.html

  • @rahulpandey9479
    @rahulpandey9479 Před 3 lety +1

    Thank you

  • @yogasankar2032
    @yogasankar2032 Před 3 lety +1

    Madam please upload solving towers of honoi problem in data structures

  • @sweetyranii
    @sweetyranii Před 3 lety +2

    video starts at 2:10

  • @CitizenWarwick
    @CitizenWarwick Před rokem

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

  • @electronics_funda
    @electronics_funda Před 3 lety +1

    Nice teach mam ❤️❤️

  • @preet5008
    @preet5008 Před 3 lety +2

    Thank you mam for your effort ...
    #friend_of_minds

  • @user-xb1lk5cw1g
    @user-xb1lk5cw1g Před 9 měsíci

    Thank you so much mam😊😊😊😊😊

  • @izel_5
    @izel_5 Před 11 měsíci

    Thank you ❤

  • @kalisthamary1919
    @kalisthamary1919 Před měsícem

    How to run c program in terbo c++
    Explain what are errors will come how to correct errors

  • @farhanpathan4167
    @farhanpathan4167 Před 9 měsíci

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

  • @saikiranreddy8135
    @saikiranreddy8135 Před 3 lety +1

    Mam do videos on python programming language

  • @deeprabasak345
    @deeprabasak345 Před 2 měsíci

    -2 is ans ....checked in ide

  • @ttej3551
    @ttej3551 Před 3 lety +3

    Answer= -2

  • @granderuhu
    @granderuhu Před měsícem

    Anybody has a good example for that postfix operators have higher precedence than prefix operators which would give wrong result when postfix and prefix is thought as they have same precedence?

  • @Rockyyyyyyy524
    @Rockyyyyyyy524 Před 10 měsíci

    Super teaching mam