C++ Increment and Decrement Operators | CPP Programming Video Tutorial

preview_player
Показать описание
In this c++ / cpp programming video tutorials / lecture for beginners video series, you will learn the increment and decrement operators.

you will learn what are increment and decrement operators , how to use increment and decrement operators,using increment and decrement operators as postfix and prefix in detail with example.

Learn Programming in HINDI at our youtube channel

Catch us on Social Media
Рекомендации по теме
Комментарии
Автор

I love it. I have gone through 4 youtube tutorials I have 8 books. I have done online work. This is my favorite so far. So short sweet and you explain things very well. Great Job.

Majorquantum
Автор

Reached a good development level in python a few months ago. Decided to move on to C++ this has been the best tutorial C++ tutorial ive found thank you.

avila
Автор

After so many searches of postfix and prefix videos on yt finally understand by yours video❤

pankajver
Автор

Perfect and simple video. Answered my question completely. Well done. Thanks.

christopherchavez
Автор

Great learning material provided with a super efficiant teaching style by Mr.Anil...specially for the beginners of CPP.
May Allah bless on you dear Anil..keep it up...

ChaudharyClubers
Автор

Thank you as I've watching more than 5 tutorials today😅 and left I'll watch more

ranjeetkaur
Автор

Thank you very much!!! Reading this in my C++ book left me confused. This explanation was simple and to the point.

SaintHood
Автор

This was a very good tutorial, thank you mr yay

calisquid
Автор

THIS VIDEO HELPS A LOT FOR BEGINNERS LIKE ME

chinmayeegouda
Автор

tomorrow is my exam and your video helped me a lot.
thank you a lot

ankitsingh-molh
Автор

best explanation of post/prefix for a newbie like me. thumbs up!

seankang
Автор

Superb video. Very much helpful in understanding difference between prefix and postfix

aakankshachaudhary
Автор

It helped me now in 2021
Thanks, buddy

x-hale
Автор

I will watch all your episodes, because they are usefull and very good about my C++ skills. I want to make games with Qt and I think that if I learn C++ from here I shall be ready to start Qt learning . Many thanks for this videos :) .

ЛъчезарПещерлиев
Автор

you explained it in amazing way.. thanks

chhayadubey
Автор

It is very helpful for me.Thank you for your nice and easy tutorial...

Ashik-M
Автор

ok...ok..now i got it, , , , nice explanation

SiddharthMaurya
Автор

Great Tutorials, explanation is very nice and understandable. Thank you so much.

khushbubhavinpatel
Автор

it helped me alot, thank learning lad. its great all

themusicmonk
Автор

#include <iostream>

using namespace std;

int main ()
{
int a, b;
a = 10;
cout << " If a is equal to : " << a;
b = ++a + ++a + ++a;
cout << "\n Then b is equal to (b = ++a + ++a + ++a) = " << b;
cout << "\n And a is equal to : " << a;
return 0;
}


the results:


If a is equal to : 10
Then b is equal to (b = ++a + ++a + ++a) = 37
And a is equal to : 13

...Program finished with exit code 0
Press ENTER to exit console.

(the main question here is in all tutorials that i watched since i am stuck in this increment and decrement operators

every video has a different answer than my results

is it because there have been changes in the compilers recently because i use dev c++ & onlinegdb.com (compiler))

so in this solution the answer which i supposed to be was 39 & 13 but it is 37. WHY?

sneakeygaming