Pre and Post-increment operator in c | increment and decrement operators in c | Hindi Tutorial Video

preview_player
Показать описание
Title : Pre and Post-increment operator in c | increment and decrement operators in c | Hindi Tutorial Video

Hii.. guys, this is Logical Programmer.
In this video, I explain about pre and post-increment operator in C.

If this video is helpful 🤩, then Donate Any Amount-

#Watch_Post_Increment_Video #Link_In_Description

Most Important Viva Questions in C (Always Asked by Professors) 👇

About this video-
00:00 Deep Information about Increment Operator.
01:29 What is Pre-Increment Operator in C.
04:51 Q-1) b = a++ + a++ ; answer ) a = 3 , b = 3
06:12 Q-2) b = ++a + ++a ; answer) a = 3 , b = 6
07:28 Q-3) b = ++a + a++ ; answer) a = 3 , b = 5
08:55 Q-4)b = ++a + a++ + ++a ; answer) a = 4 , b = 9
11:18 Q-5) b = a++ + ++a + ++a ; answer) a = 4 , b = 8
13:14 Q-6) b = a++ + ++a + a++; answer) a = 4, b = 7
15:00 Q-7) printf(" %d, %d, %d" , ++a , a , a++); ?

Partial Knowledge is dangerous, so watch the video till the end 😊

Connect with me:

Concept of Increment and Decrement operator in C# (Visual Studio)👇👇👇👇

Do you know why starting index of an array is Zero not One 🤔

Do you know How 2D and 3D Games are made ?

Have You ever play Google Dino game on chrome ?
If Yes, ever think how it made? & How much time it take to make our own Google Dino Game?

Do You Know, In C Programming, Why it named as C?

Do You Know Why we write #include in C Programming?

Can I ask you one question in C?
What is difference Between ||(Logical OR) and |(Bitwise OR) operator?

👇👇👇👇👇👇👇👇
The Playlists for learning Unity3D Game development from scratch –

👇👇👇👇👇👇👇👇
Mail me for telephonic consultancy:
1. Your name
2. Why you want to talk
3. Your phone number
We'll respond

Some Tags ---
increment and decrement operators,increment operator,increment operators in c,decrement operator,decrement operator in c,increment and decrement operators in c,pre increment and post increment in c,pre increment and post increment,pre decrement and post decrement in c,pre decrement and post decrement,rvalue,lvalue,lvalue rvalue,lvalue and rvalue,lvalue required error in c,difference between pre and post increment,c language,c programming lectures,gate cse
increment operators,decrement operators,postfix increment,postfix decrement,prefix increment,prefix decrement,postfix operators,prefix operators,increment ++ operators,decrement -- operators,lecture in hindi,c programming language,operators in c
Increment And Decrement Operators In Python
increment operator in c++
decrement operator in c
increment and decrement operators in c++
multiple increment/decrement operator in c examples
increment in python for loop
python increment by 1 function
increment operator overloading in python
python increment counter in loop
decrement in python
python operator
python increment variable in while loop
increment and decrement operators in python
Hindi tutorial on increment operator,easy method for increment operator,the best tutorial on increment operator,what are the logics behind increment operators,why we use increment operators in c,Increment operator functions,Uses of increment operator,wrong answer for increment operator,Logic behind increment operator,Questions on increment operator,Increment in C++,questions on increment and decrement operators in c,decrement operator in c++ examples,decrement operator
increment and decrement operators in c .
Increment and decrement operator in C langage Hindi.
Increment and decrement operator in C in Hindi Many Cases .
Increment and decrement operator in C++ Hindi.
Increment and decrement operator in C Programming Hindi.
What is Increment and Decrement operator in C.
Examples of Increment and decrement operator in C.
Some difficult Questions on Increment Operator.
Increment and Decrement Operator - Hindi.
Post and Pre increment Operator in C.
Pre and Post increment operator in C.
Increment Decrement Operators.
C Programming Tutorial - Increment and Decrement Operator.
C++ Increment and Decrement Operator.
Decrement and Increment Operator in C.
Best C Programming Tutorials in Hindi.
#PreIncrementOperator
#PostIncrementOperator
#OperatorsInC
#Hindi tutorial on increment operator
Рекомендации по теме
Комментарии
Автор

Dude. I love you! I have a test tomorrow and I almost had a mental breakdown trying to understand this thing when I finally came across your video and finally understood it. THANKS A LOT! God bless you!

AmanSharma-kqrb
Автор

First video on this concept on YouTube which doesn't any doubts in comment section only Thank you sir 🤗🙂
You are really logical programmer

gireeshbhat
Автор

before watching this vedio i was very confused about this topic but now i am crystal clear about this topic.. tysm❤

tarunverma
Автор

Thnku so much sir, apki vjh s aaj mera bht bda doubt khtm ho gya, or mujse ye inc or dcr wale bnne lge, biggest thnkuh to you...

akashsahu
Автор

I tried to understand it with many trial and error but i used to get wrong answer.... Spent lot of time but finally, after watching this video i understood how this operator works.... Thank you so much😊

shivanandsatyannavar
Автор

bro.. u r a genius.. i m an electrical ug student and 4 me its d toughest basic that i never could able to understand from my lectures.. but today i got damn clarity on it.. u cleared/covered all d doubts bro.. thanks a lot.. :) I used to stuck in that long expression evaluations.. but now i m absolutely crystal clear.. again thanks a lot.. great job.. keep it up bro.. all the best..

subhasishchoudhury
Автор

I don't know who the hell are disliking this video !!
Btw thanks a lot yaar, you clear all my doubts.. Lots of love from Kolkata ❤️

shyamaldas
Автор

crisp, clear and simple. wonderfully explained. Thankyou so much.

akshaygaikwad
Автор

This is the most helpful video I have found on internet so far for this topic. Most helpful. THANK

ujjwalgupta
Автор

Bhahut der say samaj nahi aaa rha tha
Jab app ki video dhekhi to sb smaj aa gya accha samjhaya bhai God bless you 👍

aishtech
Автор

After so many struggle, finally I get a worthy video and your video clears my all doubt.♥️♥️♥️

santimoyrana
Автор

"WITHOUT TEACHERS,
LIFE
WOULD HAVE NO CLASS
Thank you sir🙏❤️🙏

musicworld
Автор

jo mera doubt tha wo sirf aapke video se clear hua.Thank you for making video

DeepakKumar-vjmr
Автор

That's really helpful. Thank you so much. But these expressions exhibit undefined behavior in c standards means that it's compiler dependent and may differ from one compiler to other. C standard states that: "Between the previous and next sequence point an object shall have its stored value modified at most once by the evaluation of an expression." which means that an expression like b = i++ + i++; exhibit undefined behavior because the variable i is modified twice before the next sequence point (semi-colon) but it would be legal and well defined if it was written like b = i++ && i++; since && is sequence point so it's guaranteed that i++ will execute first. Also operators like +, /, *, bitwise and, ..etc has no defined standard order of evaluation so the first operand may get executed firstly or secondly in order.

mohamedhosny
Автор

Thanks sir . Bahut video dekhe at last apke video se samaj aa gaya 3 hours loge 😥. Slow learner .

StudyWithDhan
Автор

Man you are legend many teachers can't explain the way you explained you killed my doubt now I am feeling great thank you so much yarr

chitranshsahu
Автор

finally...!! i understand this after several wrong moves thnks :)

susmitasagar
Автор

Watched videos of youtubers having tons of suscribers could nt explain properly and u did it in style 🙂

arnabkumarbaishya
Автор

একমাত্র ভিডিও যেটা দেখে দীর্ঘদিনের কনফিউশান গুলো নিমিষেই পরিস্কার হয়ে গেলো। ধন্যবাদ।

salahuddinbhuiyan
Автор

Seriously sir apne bahut he accha explain keya h

kmvrijya