C_17 Operators in C - Part 5 (Logical Operators) | C Programming Tutorials

แชร์
ฝัง
  • เผยแพร่เมื่อ 17 ธ.ค. 2024

ความคิดเห็น • 459

  • @venkatakrishnareddykarri6603
    @venkatakrishnareddykarri6603 3 ปีที่แล้ว +160

    In the example that's used to explain logical AND, a = 10 and b = 5, so b < a becomes TRUE. But while explaining, it's stated as FALSE, which needs to be corrected.

  • @alishettishreechakra3742
    @alishettishreechakra3742 4 ปีที่แล้ว +96

    Mam this is my first year in BTech.my cse teacher is not teaching well so I have no worries now because now I am learning from you.Thank you mam

    • @shivatapasya1910
      @shivatapasya1910 3 ปีที่แล้ว +4

      Nice dp

    • @sumitp9158
      @sumitp9158 2 ปีที่แล้ว

      Bsdk aukad ke bahar ki dp mt laga. Sushant is legend ❤❤

    • @herohera3497
      @herohera3497 2 ปีที่แล้ว

      @@shivatapasya1910 how

    • @stormbreaker2791
      @stormbreaker2791 4 หลายเดือนก่อน

      then now you have completed the course

  • @akuruyajoshua719
    @akuruyajoshua719 2 ปีที่แล้ว +124

    You're a life saver ma'am.
    RESULT 1 : 1
    RESULT 2: 0

    • @meghanakondeboina4808
      @meghanakondeboina4808 2 ปีที่แล้ว +23

      Hey both are one right ?

    • @lucky4450
      @lucky4450 2 ปีที่แล้ว +2

      Result1=1
      Result 2=0

    • @rachitparashar1243
      @rachitparashar1243 2 ปีที่แล้ว +8

      @@meghanakondeboina4808 no 1st is 1 second is 0 bcz after result 1 value of a and b changes
      at end of result 2 a=0,b=8

    • @prabhakergautam9204
      @prabhakergautam9204 ปีที่แล้ว +5

      @@meghanakondeboina4808 yes when we do it in the same program otherwise 0 i.e. result 1 and result 2

    • @ShubhamSingh-qf1qi
      @ShubhamSingh-qf1qi ปีที่แล้ว +7

      both should be zero

  • @18fatima15
    @18fatima15 9 หลายเดือนก่อน +10

    16:34 result_1=a>b && printf ("jenny") || printf("lectures") && printf("jk");
    result_2=a>b && printf ("jenny") || printf("lectures") || printf("jk");
    OUTPUT: result_1=1
    result_2=1
    20:22 result 1=1
    result 2=1 (both result_1 and result_2 are evaluated in the same program

    • @pRABHAya
      @pRABHAya 7 หลายเดือนก่อน +2

      result= --a&&++b; will be 0
      Result 2 will be 0 not 1

    • @AvtarSingh-rj7jz
      @AvtarSingh-rj7jz 3 หลายเดือนก่อน +1

      Yes you are right 👍 output is 1

  • @iconboy5973
    @iconboy5973 3 ปีที่แล้ว +69

    With your videos I've passed my first semister,thank you Jenny mam 🎉from ANDHRA

  • @maryannemuthoni5388
    @maryannemuthoni5388 ปีที่แล้ว +6

    Thank you so much Jenny, i didn't know anything about the precedence, assosciativity, you clarified the increments and decrements perfectly. This is my third day watching your videos.

  • @geetageeta7933
    @geetageeta7933 3 ปีที่แล้ว +17

    16:35 result will be true(1)
    Output lecturesjk1
    16:43 also output is lectures1
    Because as log or gets 1st true it will not check another condition

  • @MechMonty
    @MechMonty 3 ปีที่แล้ว +8

    i had forgotten the operator precedency concept and in evaluation tests many times made mistakes. Now its clear to me. thanks

    • @srvocals1646
      @srvocals1646 3 ปีที่แล้ว +1

      jenny1 is the result

  • @jyoshnareddy1013
    @jyoshnareddy1013 2 ปีที่แล้ว +25

    a-- becomes 1 it means true and ++b becomes 7 so it is also true finally true and true is true it means "1"
    In second case --a becomes 0 it means false so in logical and if any one condition is false then whole result gets false it means "0"

    • @mohammedmosin4561
      @mohammedmosin4561 2 ปีที่แล้ว

      Nice explain bubby

    • @ad_mastermind1313
      @ad_mastermind1313 2 ปีที่แล้ว

      Tnx bro

    • @lucky-ls2es
      @lucky-ls2es ปีที่แล้ว +7

      Bro a-- =1 ok but after that 1-1=0?
      And in result 2 a value will be -1know??

    • @AashutoshKumar-h4w
      @AashutoshKumar-h4w 27 วันที่ผ่านมา

      @@jyoshnareddy1013 if both 1&2 condition are in same question then in second condition the value of --a is "-1"

  • @shafizulislam255
    @shafizulislam255 3 ปีที่แล้ว +7

    A beauty can explore the beauty..... Excellent lecture.

  • @shreyabiswas7313
    @shreyabiswas7313 3 ปีที่แล้ว +41

    Result 1 = a - - && + + b output 1: 1
    Result 2 = - - a && + + b output 2: 0

    • @Robin-zs7yy
      @Robin-zs7yy 3 ปีที่แล้ว +2

      Output 1: 0 na???

    • @Robin-zs7yy
      @Robin-zs7yy 3 ปีที่แล้ว +1

      Smjh ni Aaya merko😅

    • @shreyabiswas7313
      @shreyabiswas7313 3 ปีที่แล้ว +6

      @@Robin-zs7yy no bro
      Cuz in 1st result... Post increment is happened.,. So 1st initial value of a is applied and then after execution the value of a will be incremented..
      So, in 1st result : 1 && 7
      So. 1st Output will be true or 1

    • @ArjunCool
      @ArjunCool 3 ปีที่แล้ว +2

      Excellent ❤️

    • @arjunnaiduravuri9429
      @arjunnaiduravuri9429 2 ปีที่แล้ว +10

      2nd output is 1
      because after execution of first statement a value becomes zero
      in 2nd statement a is pre-decrement then value of a becomes -1

  • @chiradeepbhattacharya4858
    @chiradeepbhattacharya4858 3 ปีที่แล้ว +38

    logical
    int main();
    {
    int a=4,b=5,result;
    result=a>b && printf ("jenny") || printf("lectures") || printf("jk");
    printf("%d", result);
    result 1=1
    result 2-1
    maam both the result will be one because it is an OR GATE Used in this case.

  • @saitejaraju1115
    @saitejaraju1115 9 หลายเดือนก่อน +2

    Hi mam
    Near 4:58 stated has false
    But It's true b

  • @shrur3527
    @shrur3527 2 ปีที่แล้ว +8

    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

  • @Ajay_1351
    @Ajay_1351 4 ปีที่แล้ว +157

    in AND operator 5

    • @MrMrsKarthikRaj
      @MrMrsKarthikRaj 3 ปีที่แล้ว +3

      yes

    • @shivam7164
      @shivam7164 3 ปีที่แล้ว +8

      Answer toh phir bhi zero hi hoga

    • @humanAbsu
      @humanAbsu 3 ปีที่แล้ว +1

      😂😂 such me yrr

    • @pratibhanadiger6827
      @pratibhanadiger6827 3 ปีที่แล้ว

      ✋✋✋

    • @ayushisajwan01
      @ayushisajwan01 2 ปีที่แล้ว +2

      @Pratik 006 bro lekin final result to false (0)hi hoga Naa... chahe ek operator true or dusra false ho....

  • @abdulrahimjalloh363
    @abdulrahimjalloh363 ปีที่แล้ว

    You are the best lecturer i have ever seen for programming. Many people knows programming, but they dont know how to teach. but you, i can give you AAAAA++++++++💯

  • @prajaktakadam4779
    @prajaktakadam4779 3 ปีที่แล้ว +7

    When you print("Jenny") in Logical operator example.Return type of printf() is 1 thats why result is 1

  • @syednaveeth9825
    @syednaveeth9825 2 ปีที่แล้ว +3

    Now I understand computer is consider -1 is true value got it thank you mam

    • @De-CODE7
      @De-CODE7 2 ปีที่แล้ว

      in the last problem , --a = -1 , right ?

    • @syednaveeth9825
      @syednaveeth9825 2 ปีที่แล้ว +1

      @@De-CODE7 Yes bro you are right ✅

    • @pradeep56914
      @pradeep56914 2 ปีที่แล้ว

      @@syednaveeth9825 -1=0 ya frr -1=1...konsa hoga or kaise bro

  • @walkwithme_P62
    @walkwithme_P62 3 ปีที่แล้ว +12

    1) lecture Gk 1
    2) lecture GK 1
    3) 1&&1=1
    4) -1&&1=0&&1=0
    Thanks ma'am ur doing good job...👍👍🙏🙏

  • @adityagk1
    @adityagk1 3 ปีที่แล้ว +8

    thank you so much mam, every doubt is cleared now regarding operators.

  • @aditiraj8147
    @aditiraj8147 4 ปีที่แล้ว +18

    Ma'am for the Q of combination of logical operators answers of both the Q will be JennylecturesJK1
    & For the Q of int a=1 , b=6 ....
    Result 1 =1 and Result 2 =0

    • @geethikakrishna4460
      @geethikakrishna4460 3 ปีที่แล้ว +3

      Jenny won't be there

    • @geethikakrishna4460
      @geethikakrishna4460 3 ปีที่แล้ว +2

      Coz first exp is 0 so Jenny won't print

    • @ParamitaDey-bi1mg
      @ParamitaDey-bi1mg 3 ปีที่แล้ว +3

      @@geethikakrishna4460 Yes I also think Jenny won't be there ...
      Output will be. LecturesJK1

    • @swetakumari6641
      @swetakumari6641 3 ปีที่แล้ว +1

      @@ParamitaDey-bi1mg first jkprint after that lectures..so final result would be jklectures

    • @NothingWrong-w7b
      @NothingWrong-w7b 2 หลายเดือนก่อน

      @@swetakumari6641 but both are 1 right?

  • @ramprakashpathak6611
    @ramprakashpathak6611 ปีที่แล้ว +1

    16:45 both result is one.👍

  • @Joycee74
    @Joycee74 2 ปีที่แล้ว +6

    Result when && at the end = JK1 and Result with || at the end is also JK1. This is so because Logical && has a positive value at first, then the result is automatically TRUE which is 1, and logical OR (||) already have one and both values as TRUE, so, result is equal to 1

    • @chikwendumiracle2737
      @chikwendumiracle2737 2 ปีที่แล้ว +1

      Are you part of the alx se program

    • @Joycee74
      @Joycee74 2 ปีที่แล้ว

      @@chikwendumiracle2737 Yes

    • @udaysingh6621
      @udaysingh6621 2 ปีที่แล้ว +7

      @@Joycee74 In &&:
      Output: lectures jk 1
      In II :
      Output: lectures 1
      Please check, I think that this should be the right answer

    • @MUDIT-vy7kb
      @MUDIT-vy7kb ปีที่แล้ว

      yes this is correct@@udaysingh6621
      but no spaces in between

  • @vinayaksharma945
    @vinayaksharma945 4 ปีที่แล้ว +3

    Mam I saw your each and every video 👍👍👍 mam pleasssss give a heart to this comment

  • @dhanrajm4652
    @dhanrajm4652 4 ปีที่แล้ว +12

    Hai Dear Ma'am,
    When Your discussed && Operator b

  • @rahulsati5819
    @rahulsati5819 3 ปีที่แล้ว +3

    mam you are best.no one is like you

  • @udaysinghrana5725
    @udaysinghrana5725 2 ปีที่แล้ว +1

    16:47 - Output is 1
    20:33 - Result1 = 1 (Post-Decrement) and Result2 = 0 (Pre-Decrement)

  • @suosatyanarayanjaganathan4702
    @suosatyanarayanjaganathan4702 3 ปีที่แล้ว +4

    Answer to the last question at 20:22 is 1 and 0 respectively

  • @neelasatyasai6852
    @neelasatyasai6852 3 ปีที่แล้ว +13

    "AND" is a king he all ways want 1 rupee from all to say YES.
    "OR" is a Begger he satisfies with at least 1 rupee from any one to say YES.
    This is how i remember.

    • @FathimaRashaTP-k9d
      @FathimaRashaTP-k9d 10 หลายเดือนก่อน +1

      i was strugling hard to remember it..but now i can..thnq so much for the comparison bruh🤗

    • @vanitymeetstechnology8792
      @vanitymeetstechnology8792 7 หลายเดือนก่อน

      If there is no begger then.. what will happen then. OMG I am worried of my program

  • @EjazKhan-fr6tp
    @EjazKhan-fr6tp 3 ปีที่แล้ว +4

    Maam at 4:50 in that expression b

  • @starkendeavours7072
    @starkendeavours7072 4 ปีที่แล้ว +14

    Result 1: Lecturesjk1
    Result 2: Lectures1 for question 1
    and result 1 = 1 and result 2 =0 for last question

    • @vaibhavsingh55130
      @vaibhavsingh55130 3 ปีที่แล้ว

      Same my answer

    • @rohitsunariya8469
      @rohitsunariya8469 3 ปีที่แล้ว

      why not jk in result 2 of que 1 please tell

    • @swapnilsuradkar110
      @swapnilsuradkar110 2 ปีที่แล้ว +1

      @@rohitsunariya8469 or operator used...first condition true so it will not check next condition

  • @shreyabiswas7313
    @shreyabiswas7313 3 ปีที่แล้ว +4

    Output for expression 1 & expression 2
    Both ans will be 1
    Expression 1 : lecturer jk 1
    Expression 2 : lecturer jk 1

  • @kennedychukwu4152
    @kennedychukwu4152 2 ปีที่แล้ว +7

    Jenny thank you for the content you create. Please can you do one on Javascript.

  • @cyberguy69
    @cyberguy69 2 ปีที่แล้ว +3

    Now my concept is crystal clear

  • @kavyareddy5392
    @kavyareddy5392 3 ปีที่แล้ว +3

    expression 1: lectures jk 1
    expression 2: lectures 1
    result 1: 1
    result 2: 0

    • @ParamitaDey-bi1mg
      @ParamitaDey-bi1mg 3 ปีที่แล้ว

      Why in expression 2 jk will not be printed ?
      Why result 2 is 0 ? It suppose to be one ? Pls ans

    • @Bharathkumar-hw3fm
      @Bharathkumar-hw3fm ปีที่แล้ว

      Result 2: 1. Not 0

  • @creativityanand9566
    @creativityanand9566 7 หลายเดือนก่อน

    Jenny mam your doing so hard work god bless you I donot like c programming but when your saying I am so interested to listen and understand

  • @anusha_pathivada
    @anusha_pathivada ปีที่แล้ว +2

    For the last question both are false mam
    And tq so much mam for your vedios ❤we are loving them

  • @aarthi8358
    @aarthi8358 4 ปีที่แล้ว +6

    Thank you Jenny mam ❤️ from tamilnadu

  • @onlystudy9729
    @onlystudy9729 ปีที่แล้ว +3

    #include
    #include
    int main(){
    int a = 4 , b = 6 , result;
    result = a > b && printf(" vikram
    ") || printf(" c language by jenny
    ") && printf(" i have almost completed 17 lectures out of 150");
    printf(" %d ", result );
    return 0;
    }
    output : c language by jenny
    i have almost completed 17 lectures out of 150 1

  • @deepnarayan123
    @deepnarayan123 3 ปีที่แล้ว +1

    Result1 is true
    Result2 is also true
    And rest of all answer is also true

  • @mohdanwarkhan4661
    @mohdanwarkhan4661 3 ปีที่แล้ว +6

    # include
    main()
    {
    int a=4,b=6,result;
    result=a>b && printf("jenny")||printf("lectures")|| printf("
    jk");
    printf("%d",result);
    }
    output:
    lectures 1

    • @ashishbisht6857
      @ashishbisht6857 2 ปีที่แล้ว

      @EaSץWᗩчs 【• ‿•】 because in logical or if first statement is true it will not go to second statement

  • @maryannemuthoni5388
    @maryannemuthoni5388 ปีที่แล้ว

    Minute 4:59 has a small error, 5

  • @sowmyakoruprolu
    @sowmyakoruprolu 6 หลายเดือนก่อน

    In the example that's used to explain logical or ,a=4 && b=6,so it to be a>b becomes true.But while explaining , it's stated as flase, which needs to correct

  • @maryannemuthoni5388
    @maryannemuthoni5388 ปีที่แล้ว +1

    Question 1:
    int a = 4;
    int b= 6;
    a>b && printf("Jenny") || printf("lectures") && printf("JK");
    Answer is 1 or true
    Question 2: 1 && 7 is 1/True
    Question 3: -1 && 8 is 1/True

  • @Bakriallhashimi
    @Bakriallhashimi 3 หลายเดือนก่อน

    For the result1 the output is 1 and for the second one the output is 0. Thank you so much for the tutorials

  • @marcninochristopherocampo5138
    @marcninochristopherocampo5138 2 ปีที่แล้ว +5

    #include
    int main()
    {
    int a = 1, b = 6;
    printf("ResultA = %d
    ", a-- && ++b);
    printf("ResultB = %d
    ", --a && ++b);
    return 0;
    }
    Output:
    ResultA = 1
    ResultB = 1

    • @herohera3497
      @herohera3497 2 ปีที่แล้ว

      i didnt understand can you teach me?

    • @Surya-uu1vy
      @Surya-uu1vy 2 ปีที่แล้ว +2

      Result B is zero bro

    • @Bharathkumar-hw3fm
      @Bharathkumar-hw3fm ปีที่แล้ว

      Result B=0 because, in logical and if one condition is false then it won't go to next statement. It will be print 0

    • @lucky-ls2es
      @lucky-ls2es ปีที่แล้ว

      Yeah . i got the same

    • @hopemeles4106
      @hopemeles4106 ปีที่แล้ว

      that is result b is one becase of a--- the result A 1-1 =0 then the result --a the 0-1 the the out put -1 so that -1 and 8 is one please check it@@Surya-uu1vy

  • @mohamedaljorni9360
    @mohamedaljorni9360 ปีที่แล้ว

    result 1 = 1
    result 2 = 0
    thanks maam for this Simple explanation and great ideas

    • @Tijiyabhanu
      @Tijiyabhanu 9 หลายเดือนก่อน

      Yes you are correct

  • @devendernarra248
    @devendernarra248 4 ปีที่แล้ว +1

    Tq mam, I'm learning lot's off ,from ur videos

  • @manirulmolla5519
    @manirulmolla5519 2 ปีที่แล้ว +3

    Very well explained, Thanks😊

  • @angeloghenefuafo
    @angeloghenefuafo 2 ปีที่แล้ว +1

    the first one is 1 and a becomes 0 while b becomes 7.
    then second one the results is 0 won't check the other because it's AND Operator, while becomes 7

  • @_JAYASRIS-zt5zw
    @_JAYASRIS-zt5zw 7 หลายเดือนก่อน

    Thanks a lot making this concept crystal clear

  • @krupa1963
    @krupa1963 4 ปีที่แล้ว +4

    Output for
    Expression 1 : lectures jk 1
    Expression 2 : lectures 1

  • @granderuhu
    @granderuhu 4 หลายเดือนก่อน +2

    result1: 1 && 7 which is true
    result2: -1 && 8 which is also true

  • @LIGHT-fz8yu
    @LIGHT-fz8yu 3 ปีที่แล้ว +2

    Thanks 🙏🙇
    Now I get it correctly

  • @isaac-victorshonowo1838
    @isaac-victorshonowo1838 ปีที่แล้ว

    Watched and Understood ❤

  • @ankitapriyadarshinijalli5069
    @ankitapriyadarshinijalli5069 3 ปีที่แล้ว +4

    Thank you maam..I survived my 1yr of cse because of you.

    • @SadhanaSharma
      @SadhanaSharma 3 ปีที่แล้ว +2

      19:42 here first we should evaluate a++ na because it's precedence is higher than relational operator
      Please help

  • @bejgamwarkrishnahanmant1936
    @bejgamwarkrishnahanmant1936 3 ปีที่แล้ว +5

    1)- printf ("%",result);=1
    Printf ("%",a);=0
    Printf ("%",b);=7
    2)- printf ("%",result);=0
    Printf ("%",a);=0
    Printf ("%",b);=6

    • @pradeep56914
      @pradeep56914 2 ปีที่แล้ว

      2. Me b ki value to 8 hojayegi na...to 6 wrong h

  • @d.harikrishna9161
    @d.harikrishna9161 2 ปีที่แล้ว +4

    Hii
    Can u explain fatal error
    Ur sections very nice

  • @SadhanaSharma
    @SadhanaSharma 3 ปีที่แล้ว +2

    16:33 lectures Jk 1

  • @Mr.Andreas07
    @Mr.Andreas07 3 หลายเดือนก่อน

    int a=1, b=6, result;
    result = (a--&&++6)
    Outpout: result = 10
    result = (--a&&++b)
    Output: result = 00

  • @sreekanthkurakula7271
    @sreekanthkurakula7271 3 ปีที่แล้ว +4

    can u plz explain how to give first priority to logical AND for logical OR for selecting

    • @gmramkumar9536
      @gmramkumar9536 3 ปีที่แล้ว +1

      Logical precedence : NOT > AND > OR

  • @sulurulokesh7877
    @sulurulokesh7877 8 หลายเดือนก่อน

    madam in c language it is possible at run time of 15:00
    but in java we will getting an error of short circuit.
    as the output line does not return any value . so that void is not assigned to int.
    thank you

  • @klektech6126
    @klektech6126 2 ปีที่แล้ว

    For Logical Expression-1
    Result =1
    a=0
    b=7
    For Logical Expression-2
    Result =0
    a=0
    b=6

  • @jashankaur3726
    @jashankaur3726 ปีที่แล้ว

    your learning mathod is so great mam 💙

  • @amnanadeem1282
    @amnanadeem1282 2 ปีที่แล้ว +1

    Love your lectures ma'am

  • @Mr.Yaragonda
    @Mr.Yaragonda 3 ปีที่แล้ว

    Thank❤🌹😊 you so much madam..... You are my best TH-cam▶️ 👩‍🏫‍teacher

  • @karthickambrish
    @karthickambrish 4 ปีที่แล้ว +10

    Result would be 1 and 1 for both the questions when replaced with &&, || operators.

  • @Classy_Rajesh
    @Classy_Rajesh 2 ปีที่แล้ว +1

    For && statement answer =1
    For // statement answer =1

  • @RishiVaish-ym1nr
    @RishiVaish-ym1nr 2 หลายเดือนก่อน

    Thank you so much, ma'am 🌟

  • @raunakraj3746
    @raunakraj3746 ปีที่แล้ว

    result1=1
    result2=1
    You're a life saver ma'am.✌✌✌✌
    thanks, ma'am, for this wonderful lecture!

  • @krishnakumar-gu6oi
    @krishnakumar-gu6oi 2 ปีที่แล้ว

    MY FIRST SIMPLE PROGRAM DONE

  • @SadhanaSharma
    @SadhanaSharma 3 ปีที่แล้ว +4

    19:42 ma'am but first we should evaluate a++ na because it's precedence is higher than relational operator

    • @kumarabhishek2901
      @kumarabhishek2901 3 ปีที่แล้ว +2

      💯 post increment or decrement having least priority than assignment operator

    • @De-CODE7
      @De-CODE7 2 ปีที่แล้ว

      @@kumarabhishek2901 what do you mean by this post++ and -- , is a type of assignment operator bro. you should compare it with relational operator

    • @ShyamSundar-xd4lb
      @ShyamSundar-xd4lb 2 ปีที่แล้ว

      Paranthesis () have highest priority of all

  • @rushikeshsanap1981
    @rushikeshsanap1981 ปีที่แล้ว

    Thank you ma'am
    Nice suit by the way

  • @HariRam-ik8xz
    @HariRam-ik8xz 3 ปีที่แล้ว +8

    For Logical Expression-1
    Result =1
    a=0
    b=7
    For Logical Expression-2
    Result =0
    a=0
    b=6
    100% correct answer

  • @venup5381
    @venup5381 3 ปีที่แล้ว

    at 16:34 and 16:43
    the answer is lecturesjk1
    here jenny wont print because 1 expression is 0

  • @arshkhan44
    @arshkhan44 7 หลายเดือนก่อน

    The output of the last homework in a correct way :-
    #include
    int main()
    {
    int a=1,b=6;
    int result1=a-- && ++b;
    printf("Values becomes in result1 :
    ");
    printf("A = %d
    B = %d
    ",a,b);
    printf("The result1 is : %d
    ",result1);
    int result2 = --a && ++b;
    printf("Values becomes in result2 :
    ");
    printf("A = %d
    B = %d
    ",a,b);
    printf("The result2 is : %d
    ",result2);
    return 0;
    }
    OUTOUT :
    Values becomes in result1 :
    A = 0
    B = 7
    The result1 is : 1
    Values becomes in result2 :
    A = -1
    B = 8
    The result2 is : 1

    • @shireesha511
      @shireesha511 4 หลายเดือนก่อน

      0 && 7 becomes 0 ...so result 1is = 0

    • @shireesha511
      @shireesha511 4 หลายเดือนก่อน

      Can u please tell me how in result 2 A = -1

  • @poornimab8877
    @poornimab8877 2 ปีที่แล้ว +1

    Really super ma'am

  • @deepikagk5304
    @deepikagk5304 2 ปีที่แล้ว +3

    For a=1, b=6
    Result 1: 0
    Result 2 : 0

  • @anandiam334
    @anandiam334 4 ปีที่แล้ว +4

    Love Jenny so much❤️❤️

  • @bajrangjangid7051
    @bajrangjangid7051 3 ปีที่แล้ว +1

    What would be the associativity for logical operators...?
    Here less than operators must be seen before any == operators right?

  • @bommanareddaiah3950
    @bommanareddaiah3950 4 ปีที่แล้ว +3

    Mam say full python language how to write sourcecode in python language in any concept

  • @handekarilingojivarasaikri782
    @handekarilingojivarasaikri782 3 ปีที่แล้ว +2

    Result of a-- && ++b = 1
    And a = 0, b = 7
    Result of --a && ++b = 0
    And a = 0, b = 6.....

    • @suchithpk4844
      @suchithpk4844 3 ปีที่แล้ว +1

      Bro hw u did can u explain plz

    • @handekarilingojivarasaikri782
      @handekarilingojivarasaikri782 3 ปีที่แล้ว +2

      @@suchithpk4844 In 1st one it is first assigned then decremented (a--) and reverse in the case of b++..
      This means -1 && 7 is the expression. Expect 0 all are true values..So it will be 1..
      In 2nd case --a it's first decremented then execution takes place.
      So 0 && ++b = 0
      If in && first expersion in false then it will not evaluate the second expersion.
      And a= 0, b= 6..
      Whereas in 1st case it is true for first expersion. So a = 0, b = 7
      I hope you got it...

  • @BTCIV_AyushMalviya
    @BTCIV_AyushMalviya 2 ปีที่แล้ว +1

    ThankYou Mam

  • @gautamshakya973
    @gautamshakya973 ปีที่แล้ว +1

    int main()
    {
    int a=5,b=7,result;
    result= aa && printf("!!")&& printf("true
    ");
    printf("%d",result);
    }
    Hello mam!! I get output of this code is 1, so why doesn’t and operator is evaluated first according to precedence as you said!! In my analysis OR operator is evaluating first according left to right

    • @Prasanna-im1zy
      @Prasanna-im1zy ปีที่แล้ว

      Did u get the answer even I am getting output as 1
      By the way it should be
      !!true
      1
      Ryt??

    • @gautamshakya973
      @gautamshakya973 ปีที่แล้ว

      @@Prasanna-im1zy still couldn't get through of this😰😰

  • @immanojgm
    @immanojgm ปีที่แล้ว

    What is the associativity for AND,OR,NOT and make sure what is precedence of these.

  • @mikipaul9526
    @mikipaul9526 4 ปีที่แล้ว +2

    i tried && operator (if first condition is false then it won't execute the second one but it shows error on second condition) how is it?

    • @starkendeavours7072
      @starkendeavours7072 4 ปีที่แล้ว +1

      Please share the code once. Can't be understandable using English words.

    • @tayyabhussain2021
      @tayyabhussain2021 3 ปีที่แล้ว

      If first condition is false then ultimate answer is false

  • @manjumv5218
    @manjumv5218 2 ปีที่แล้ว

    mam at 19.02 ++ is having higher precedence than ll operator .so a++ is evaluated before ll ..value of ' a 'would be 11. Please check it..

  • @HariRam-ik8xz
    @HariRam-ik8xz 3 ปีที่แล้ว +2

    16:43
    lectures jk 1
    lectures 1
    Ans respectively 🥴

  • @SahasraMuthyam
    @SahasraMuthyam 5 หลายเดือนก่อน

    We should consider and as multiplication as in case of logic gates

  • @dhanmay1969
    @dhanmay1969 4 ปีที่แล้ว +2

    Mam answer of Q1 = 1 && 1.. And of Q2 = 1 && 0....

  • @tps8470
    @tps8470 2 ปีที่แล้ว +1

    Thanks a Lot Mam

  • @musingsbyalex7764
    @musingsbyalex7764 4 ปีที่แล้ว

    Love Jenny so much

  • @f0rd63
    @f0rd63 2 ปีที่แล้ว

    Ans : 1 and 0
    but it is difficult to me to find but finally i got it .

    • @sagarbista8516
      @sagarbista8516 2 ปีที่แล้ว

      Try to find value of a and b also, you will get all concept what mam want us to understand

  • @yogarathinampadmavathi3125
    @yogarathinampadmavathi3125 ปีที่แล้ว

    Mam please change it and correct it by editor mam 5 is less than 10 is true mam and the output is 1 mam , we support you every where you go mam ❤❤❤❤❤🎉🎉🎉

  • @nooludhanasekhar05
    @nooludhanasekhar05 ปีที่แล้ว +1

    Mam you can do this javascript. Why Because is teaching very good contents. Any way no purchase for c language good achive my self

  • @pogalaharshitha398
    @pogalaharshitha398 2 ปีที่แล้ว

    you are correct in and program mam

  • @seenusunny981
    @seenusunny981 2 ปีที่แล้ว +4

    For first result 1 = "1"
    For second result 2 = "0"

  • @moubeothniel843
    @moubeothniel843 2 ปีที่แล้ว

    Int a= 1 result = a- - && ++b answer is 1
    Int b = 6 result = - -a && ++b answer is 0

  • @sreenithisundarraj9021
    @sreenithisundarraj9021 2 ปีที่แล้ว

    Mam ,for me ,you are god🙏

  • @Rajkumarking2002
    @Rajkumarking2002 4 ปีที่แล้ว +1

    Thank you mam😍😍