C_16 Operators in C - Part 4 | C Programming Tutorials

preview_player
Показать описание
*******************************************

Connect & Contact Me:

*********************************************

More Playlists:

#cprogramming #jennyslectures #programming #operatorsinc #clanguage
Рекомендации по теме
Комментарии
Автор

a=18, b=10, c=9, d=10, e=10
a+c==b>=e<c+d!=1
Higher Preference for arithmetic operators (+, -, *, /) and from left to right
27==b>=e<19!=1
Now will go with (<, >, <=, >=) and then with (==, !=) from left to right
27==1!=1
0!=1
answer = 1
Thank you Ma'am Your Teaching Technique is so good <3

balkrishnabane
Автор

Mam the ans is 1

0 ! = 1
So the ans will be 1
And thank you mam. You're the best 🥺❤

shreyabiswas
Автор

Tq for u r efforts mam... BSc complited.. Just for passing out I learned cs. After coming out of the clg... I came out with empty head n with gataduation certificate 😂. But now, am heartfully saying.. Now am learning c up to my level best. And tqq soo much fr not using hindi mam....A single word I can't understand in Hindi language... Plzzz continue in English only ❤️🙏🙏🙏. From u r beloved student

shwethanagaroor
Автор

0 ! =1.. so output is 1 or true nd thnx a lot ma'am.

anvigurjar
Автор

answer to assignment:
a+c==b>=e<c+d!=1 // question
27==10>=10<19!=1 // arithemetic operators has higher precedence
27==1<19!=1 // >=, < has higher precedence than == and != and associativity L TO R
27==1!=1 // same reason as previous
0!=1 // asociativity L to R
which is true. so answer is 1.

tusharpaul
Автор

mam the ans is 1.because 0!=1.Mam your way of teaching is really good.Thank you mam

lavanyam
Автор

'+' =='+' o/p is 1
'<' > '>' o/p is 0
The askii value of plus sign is 43
The askii value of lessthan symbol is 74
The askii value of greater than symbol is 76
And thanx a lot mam
U r explaining everything in a simple manner
Thank u so much🙂

meghanakondeboina
Автор

Thanks now I understand these operators actually I am doing c course from code with harry but i wont understood these Operators so camed here

Nicely explained :)

LIGHT-fzyu
Автор

U re gifted Ma...
U re making C programming so easy and enjoyable

mammansanniumar
Автор

Last "take care" and that smile hits different 😫🤌💖
Thankyou mam nice class❤❤❤

kannapi
Автор

Mem your teaching style is too awesom mem i suggest to you mem when you are talking about little little thing like sky value and something like word as a bigner we can't understand these words so mem 🙏 please i humble request to you mem can uh make small small video for us for little little things. and thanks so much dear mem. We are always supporting uh mem🥰

hacky_adtechvlog
Автор

I am from home 😁
I like your way of teaching, and I will definitely share your lectures

voiceofown
Автор

27==1!=1
0=!1
1 this is the ans of last question
thank you mam❤❤

dipteshsahoo
Автор

What a fabulous teaching I'm from Andhra Pradesh I didn't find teacher like u in my state

sandeepbudha
Автор

I'm getting in love with this subject cause of u💥💥♥️...keep rocking

deerghaneja
Автор

Mam I'm a biology student now I'm doing my medical course but too I'm interested in Programming in C when I see your class eventhough I'm a biology student i can understand this C like my biology subject mam TQ for your super teaching go ahead mam we always support you ❤❤❤❤❤❤❤❤❤❤

yogarathinampadmavathi
Автор

#include<stdio.h>
int main()
{
int a=18, b=9, c, d, e=10;
c=b++;
d=b;
printf("%d", a+b==b>e<c+d!=1);
return 0;
}

Output = 1

SaiAravindKumar-xcdr
Автор

Hey Jenny di you teaching methods are superb!
I am doing computer applications so can u please make a lecture of structures and unions. 😃

shikhabadhan
Автор

My assignment answer with explain
First I consider <>\<=\>=
According to b>=e this is true=1
1<19 this is true =1
Now preference I consider ==nothing to != According to it 27==1 which false then answer 0
Now 0 !=1 means 0 not equal to 1 which true then my final answer 1. My answer 1

Vikaskumareng
Автор

The answer of the last problem you assigned us for home work is = 0
Means it will give answer zero...because this expression is having false final value...

vijayjain