I spent lot of time on this concept to understand it by watching other videos and by browsing on network but I didn't got the point 🙄 now by watching ur video I finally got the concept nd clearly understood🥰 tnq soo much ma'am
Recently I have joined an educational institutions as Assistant professor to teach C. I thought them the way you teach. They become my fan and I am your fan. Thanks for helping me.
In 12 th standard,there is one teacher,whether students understand or not she always running like horse,she just wants to complete syllabus,Can't able understand anything,just memories and copies in examination,Becoz of this i hate coding in school days
Thank you so much ma'am I really needed this type of video for my clearance in post and pre increment and decriment operations in programming thank you so much ma'am🙏🏻❤
Ma'am could you please upload tutorials for Web development topics like JavaScript, Ajax, MVC, jQuery..bcz I feel that web development is growing very rapidly now a days.. everything is online...and we students should learn about those topics also...It would be a great help if U can try uploading on those topics...btw you doing a great job ma'am keep it up..lots of love ✌️🤍
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
@@vibhusharma2881 Binary operators will have a format with expressions like x = 1 + 2. Here, 1 and 2 are operands and '+' is operator. As there are two operands with the operator '+', it will be called a binary operator. But if the expression is x = i++, then '++' will be considered a unary operator, because only one operand 'i' is with this operator.
@@rathodkaran9297 ya the increment and decrement falls under unary operator. But the three types of operators - ternary, binary and unary has nothing to do with C programming because it's more related to mathematics. In C operators are categorized as ARITHMETIC, RELATIONAL, LOGICAL, ASSIGNMENT, BITWISE, MEMBER & POINTER and OTHERS.
Hi, I was wondering why the value of X changes in the assignment increment operator. When we have y=++x It equates to y= value of x incremented. Hence, y=11 when x=10. Since the assignment is for y, why does the value of x change as well? I would think that the output would be x=10 and y=11 if we print both x and y. Thank you!
Ma'am I have a doubt ,if i write following program main() { int a=0; a=a++; printf("%d",a); } Then it gave me output as 0 and not 1, but after that assignment increment operation should take place and a should turn to 1. Can you explain this why it shows 0 as output?
I think it is a 0 because of the assignment operator. a=a++ In this case, you have a post-increment. Hence, the value of a = 0 @LIGHT would the True/false apply to an assignment operator? I am genuinely asking. I would think that it would apply to a relational operator, or some version of bitwise operator.
@@cookingwiththehaitiantwist Hi, can you help me whith the code #include void main() { int a=5,b,c,d; b=++a; c=a++; d=++a; printf("%d",b); return 0; } but showing error unable to exectue, please help me
This lecture is far better than the lecture given in engineering colleges
Really far better ❤
She is the best teacher i have ever seen in my life
I agree ur statement
True😢
9:42 to 10:20 This one thing defined this video ❤️
well said
I spent lot of time on this concept to understand it by watching other videos and by browsing on network but I didn't got the point 🙄 now by watching ur video I finally got the concept nd clearly understood🥰 tnq soo much ma'am
You are so patient, just amazing!! Best CS teacher ever.
Recently I have joined an educational institutions as Assistant professor to teach C. I thought them the way you teach. They become my fan and I am your fan.
Thanks for helping me.
Congo sir
finally i have understood this after 2 years
Thanks very much mam, this ++ and - - was difficult to understand, but now I understand it very well. May Almighty God bless you. Ameen
In 12 th standard,there is one teacher,whether students understand or not she always running like horse,she just wants to complete syllabus,Can't able understand anything,just memories and copies in examination,Becoz of this i hate coding in school days
Thank you so much ma'am I really needed this type of video for my clearance in post and pre increment and decriment operations in programming thank you so much ma'am🙏🏻❤
I love your way of teaching mam with different examples..... Thank❤🌹😊 you so much❤😊 madam
Ma'am could you please upload tutorials for Web development topics like JavaScript, Ajax, MVC, jQuery..bcz I feel that web development is growing very rapidly now a days.. everything is online...and we students should learn about those topics also...It would be a great help if U can try uploading on those topics...btw you doing a great job ma'am keep it up..lots of love ✌️🤍
I must say......you're an awesome teacher mam. You explain very nicely......thanks mam
Thank you so much mam, this is my first time learning c n the concept is very clear now….❤❤
Thank you mam
You are the best teacher i ever had
Tq mam for your interesting classes,I had interested because of your classes in 'C'
best videos for c programming
Thanks for the videos mam ur videos r very useful to the study easily ur the best than my lecture
You are my best tutor
congrats for 300k subscribers
Your skin is so good 🌸🌸🌸such a beautiful person and amazing teacher..my inspiration
Thank you ma'am
Your lectures are very helpful and easy to understand.
Your way of explaing is super mam
Thank you madam , no words but made it that easy
Finallyyyyy i understand 😅😅
Now iam able to understand c language
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
Teaching skills 👌👌👌👌👌👌👌👌👌👌👌👌👌👌
Congratulations mam, for reaching 300k subscribers👍👍👍🥳🥳🥳
Mam there is a mistake in
y=--x, the value of y should be y=x-1
At time 9:55
Take a bow for mam❤❤❤
#include
#include
int main (){
int a=10,b=-7,c=4,d=0;
d+=a*c;
printf("%d",d);
return 0;
}
//Good, thanks ma
May the Almighty Bless u
thank you so much. this will help me alot
Thank you ma'am
Merry christmas dude❤️❤️🎉🎉🎉
You are super cool mam 😊
increament and decrement was very confusing but you made it like ice cream..
Merry Christmas 🎄 Ma'am
*THERE ARE MAINLY 3 TYPES OF OPERATORS* - Unary, Binary and Ternary operators. The operators discussed here comes under Binary category.
Please tell me how
@@vibhusharma2881 Binary operators will have a format with expressions like x = 1 + 2. Here, 1 and 2 are operands and '+' is operator. As there are two operands with the operator '+', it will be called a binary operator. But if the expression is x = i++, then '++' will be considered a unary operator, because only one operand 'i' is with this operator.
@@debojitacharjee thanks for giving your knowledge I appreciate
@@debojitacharjee it comes under unary category
@@rathodkaran9297 ya the increment and decrement falls under unary operator. But the three types of operators - ternary, binary and unary has nothing to do with C programming because it's more related to mathematics. In C operators are categorized as ARITHMETIC, RELATIONAL, LOGICAL, ASSIGNMENT, BITWISE, MEMBER & POINTER and OTHERS.
really amazing lecture mam thank you keep going
Thanks a Lot Mam
Watched and Understood ❤
Thank you.
Nice teaching🔥🔥🔥
Best teacher 😍😍
Thank you mam
You are the best
Mam in post increment why y=10 remains same mam ?
Mam why we won't use getch here , because we using void main and conio.h
Hi,
I was wondering why the value of X changes in the assignment increment operator.
When we have y=++x
It equates to y= value of x incremented.
Hence, y=11 when x=10.
Since the assignment is for y, why does the value of x change as well?
I would think that the output would be x=10 and y=11 if we print both x and y.
Thank you!
thanks mam you are great
Mam, i hv one query. Agr hme increment or decreent ek hi statement m krna ho to kya krna hoga.... b=++a, --a; is that right...??
Thank you so much mam❤
Thanks for the video 🔥👍
Nice explanation mam.
Congratulations Mam for 3 lakh subscribers 🤩🥳
1.45M now.
1.47 NOW
Great ma'am.
Thank you
First view.
Please make solution videos of HTET COMPUTER SCIENCE exam is on 2 jan 20
Mam sath sath laptop par bi karay a karo🔥🔥🔥
Op teacher 😊
Thank u mam
1:10 This the the the the th th that 😂😂😂😂😂
a=4,b=3
i want to print c= a+++++b
then what will get output..
and my o/p was error....if it's right but how will come ?
can explain ??
8
@@snehilgupta6201 hw
@@crazy...3883 c=a++ ++ + b
a=5, b=4 c=8
This are after execution
mam, i want to join csbs(computer science and business systems) this year 2020. will u plz make a video on the course.
mam provide notes as well mam
Please provide notes to the c mamm
Marry christmas
Can anyone suggest me best book for C programing language 2022
SELECT * FROM teachers ORDERBY talent DESC LIMIT 1;
Mam your smile 😍😘
Mam c language ka her topic ka video upload kariye plzzz
Ma'am I have a doubt ,if i write following program
main()
{
int a=0;
a=a++;
printf("%d",a);
}
Then it gave me output as 0 and not 1, but after that assignment increment operation should take place and a should turn to 1. Can you explain this why it shows 0 as output?
0 is false and 1 is true watch course of C programming of code with harry he explains well and do practical the most
I think it is a 0 because of the assignment operator. a=a++
In this case, you have a post-increment. Hence, the value of a = 0
@LIGHT would the True/false apply to an assignment operator?
I am genuinely asking. I would think that it would apply to a relational operator, or some version of bitwise operator.
@@cookingwiththehaitiantwist
Hi, can you help me whith the code
#include
void main()
{
int a=5,b,c,d;
b=++a;
c=a++;
d=++a;
printf("%d",b);
return 0;
}
but showing error unable to exectue, please help me
Many first views .....
But im the first learner....😅😅
Mam what will be the value of i+++
Mam can you send pre and post fix question in c
Hello mam please upload notes of c language
10:19
Awesome
Thank u mam u r angel for me 😇🙏
can you explain python programs ?
First view
Hi mam could you please explain for x = x++;
take care maam
Ma'am I have seen c++ basics like I/p o/p ;loops; and basics on what are fucntions pointers arrays.. So can i start with ds algo side by side✌✌✌...?
Before DS u need to more practice for competitive programming
Mam please share c programming notes in pdf format
Yes 👍👍👍
#include
int main()
{
int x=5;
x=x++ + ++x;
printf("%d",x);
return 0;
}
What is the output of this program??
Output is 12
1st view
c = 7 ?or c = 6
mam plz start java
🙏🙏🙏
❤❤❤❤❤
Got it
mam...i love u
Mam please give notes
51th👍
op
😍😍😍😍😍
Habbit ho chuki h jenny lecture ki
❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
Mdm address bhi describe kr den 🙏