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.
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 ✌️🤍
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🙏🏻❤
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
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
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!
@@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.
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😢
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
9:42 to 10:20 This one thing defined this video ❤️
well said
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
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 ✌️🤍
Thanks very much mam, this ++ and - - was difficult to understand, but now I understand it very well. May Almighty God bless you. Ameen
finally i have understood this after 2 years
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
Thank you so much mam, this is my first time learning c n the concept is very clear now….❤❤
Tq mam for your interesting classes,I had interested because of your classes in 'C'
Thank you mam
You are the best teacher i ever had
I must say......you're an awesome teacher mam. You explain very nicely......thanks mam
Your skin is so good 🌸🌸🌸such a beautiful person and amazing teacher..my inspiration
best videos for c programming
You are my best tutor
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
Thanks for the videos mam ur videos r very useful to the study easily ur the best than my lecture
Thank you ma'am
Your lectures are very helpful and easy to understand.
Thank you madam , no words but made it that easy
#include
#include
int main (){
int a=10,b=-7,c=4,d=0;
d+=a*c;
printf("%d",d);
return 0;
}
//Good, thanks ma
Your way of explaing is super mam
Superb way of teaching mam..❤
thank you so much. this will help me alot
May the Almighty Bless u
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
Now iam able to understand c language
congrats for 300k subscribers
Congratulations mam, for reaching 300k subscribers👍👍👍🥳🥳🥳
Thanks a Lot Mam
Take a bow for mam❤❤❤
Thank you ma'am
Finallyyyyy i understand 😅😅
increament and decrement was very confusing but you made it like ice cream..
Mam there is a mistake in
y=--x, the value of y should be y=x-1
At time 9:55
Watched and Understood ❤
Thank you.
Teaching skills 👌👌👌👌👌👌👌👌👌👌👌👌👌👌
Merry Christmas 🎄 Ma'am
You are super cool mam 😊
Thank you
thanks mam you are great
Thank you mam
You are the best
Merry christmas dude❤️❤️🎉🎉🎉
Thank you so much mam❤
Please make solution videos of HTET COMPUTER SCIENCE exam is on 2 jan 20
Mam c language ka her topic ka video upload kariye plzzz
really amazing lecture mam thank you keep going
Great ma'am.
Thank u mam
mam provide notes as well mam
Best teacher 😍😍
Mam in post increment why y=10 remains same mam ?
Nice teaching🔥🔥🔥
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!
Nice explanation mam.
Mam sath sath laptop par bi karay a karo🔥🔥🔥
Congratulations Mam for 3 lakh subscribers 🤩🥳
1.45M now.
1.47 NOW
Mam why we won't use getch here , because we using void main and conio.h
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...??
Thanks for the video 🔥👍
Op teacher 😊
*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.
take care maam
mam, i want to join csbs(computer science and business systems) this year 2020. will u plz make a video on the course.
Please provide notes to the c mamm
Marry christmas
First view.
SELECT * FROM teachers ORDERBY talent DESC LIMIT 1;
Awesome
Hello mam please upload notes of c language
Can anyone suggest me best book for C programing language 2022
1:10 This the the the the th th that 😂😂😂😂😂
Mam can you send pre and post fix question in c
can you explain python programs ?
Thank u mam u r angel for me 😇🙏
Mam your smile 😍😘
Got it
Mam what will be the value of i+++
🙏🙏🙏
Hi mam could you please explain for x = x++;
❤❤❤❤❤
mam plz start java
op
First view
Mam please share c programming notes in pdf format
Yes 👍👍👍
mam...i love u
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
c = 7 ?or c = 6
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....😅😅
10:19
1st view
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 give notes
51th👍
❤❤❤❤❤❤❤❤❤❤❤❤❤❤❤
😍😍😍😍😍
#include
int main()
{
int x=5;
x=x++ + ++x;
printf("%d",x);
return 0;
}
What is the output of this program??
Output is 12
Habbit ho chuki h jenny lecture ki