C++ series is back!! ❤️ Thank you all for watching! Don't forget that the first 1000 people to use the link will get a free trial of Skillshare Premium Membership: skl.sh/thecherno03211
Great series and so entertaining! Do you have any videos planned for intrinsic functions? I've seen a couple already, but I still don't quite get how it works... Would be great to see it coming at some point in time :) But already thanks a lot for all the great work! Keep on going!
The main difference between some of my uni classes and your YT series, is that I understand all of what you have to say, in compile time. No extra learning required.
Wow, now you're into some computer engineering stuff! You told me in 20 mins all that my university teachers were telling me for 1 year. Well done, The Cherno! Make more videos like this! Thank you!
Great explanation! However, I think it's important to distinguish between binary value and binary representation in memory. What we have at 16:23 is (little-endian) representation. Say you have 255 and not 5, so 1111 1111 0000 0000 0000 0000 0000 0000. Now because it's representation, after bit-shifting the value by 1 to the left, you would have 1111 1110 0000 0001 0000 0000 0000 0000 in representation, which is correct, but it's not clear how the 16th bit became one. So for clarity, I believe it makes sense to demonstrate bit-shifts on the binary value: 0000 0000 0000 0000 0000 0000 1111 1111
I'm very happy to see how the TH-cam and Twitter pools were effective!!! Thanks for listening us! Wishing you a successful NEW period and many more views!
My favorite and goto playlist for reviewing C++ for the past few years! I've also been following your OpenGL series and both have been very interesting and helpful. Thanks a ton!
Finally, I have just finished watching this playlist (at the moment there are only 96 episodes), God, in 2 weeks I watched almost 100 videos at 2x speed. It was during these 2 weeks that I learned a lot of new things, and once again I was convinced that C++ is impossible to learn, because it is replenished. Thanks a lot Cherno, you're an incredible person, I'll start watching the OpenGL learning playlist soon! Greetings from Russia!
You have no idea how happy I am that you are continuing this. You are by far the easiest person to follow along regarding CPP teachings. I've done courses on Udemy by professionals since you stopped uploading to this series and none of them are as easy to follow along as you are. That being said I still learned a lot from them. But some of the technical stuff, regarding memory and stuff you are the easiest. I think because you go into Assembly sometimes and show the backbone. It does a lot to help people *actually understand* what's going on. "Any fool can know, the point is to understand" - Einstein
One thing I like about C/C++ is the bit-fiddling capabilities. Used these operators for many years for filtering and and analyzing electronic measurement data. Eg: lends itself nicely to things like 2’s complement conversion and arithmetic operations of binary data.
Thank you SO MUCH for making these Bitwise operations videos. I feel like every time I start feeling like I'm learning to program better, I see a snippet of code either in your code review series or something on StackExchange and there's Bit-Shift stuff happening everywhere and it's always made me feel so dumb and confused about what the point of using it was or when I'd need/want to use it. Thank you for making this! Also I had no idea that the windows calculator had a programmer mode, that rules
So the decimal system is base 10 and binary is base 2. Shifting left is essentially adding a zero to the right of the number, which is multiplying by the mathematical base. So in decimal adding a zero to the right is multiplying by 10 and in binary it's multiplying by 2. Same with shifting right being like removing a place from the right, or dividing by 10 in decimal and dividing by 2 in binary. Cool! I never knew this, but this makes things really clear. Thanks!
Awesome! I'm no beginner but I didn't know the compiler optimised power-of-two multiplications into bit shifts. Something for everyone in these videos, glad you're returning to it!
hey, i love that the series continues! can you make a video about testing? i think this is a very important subject that the playlist has not yet covered... thank you so much, love your video(s) :)))
Thanks a lot man for talking about this topic. Normally bit shifting always had jumped over my head because I couldn't make any sense why it works like that until this video. Your in-depth explanations is really amazing. Waiting for next video. ❤️
I absolutely love this series, and therefore this video, but I find it funny that I'm 14 out of 22 minutes in and you've barely spoken a word about any of the bitwise operators listed in the intro... I do appreciate the tangential conversation about word notation though, makes me feel good to have a clue what you're talking about. :P
C++ series is back!! ❤️ Thank you all for watching! Don't forget that the first 1000 people to use the link will get a free trial of Skillshare Premium Membership: skl.sh/thecherno03211
Yes!!!!!
@Elite Fusion yes, and this video is a part of that course
Great series and so entertaining!
Do you have any videos planned for intrinsic functions? I've seen a couple already, but I still don't quite get how it works...
Would be great to see it coming at some point in time :)
But already thanks a lot for all the great work! Keep on going!
Yesss
Do you have any websites to supplement the learning
Holy cow!!! We got a c++ video, after centuries!!
Yay glad to see the c++ series making a comeback cherno.
You are getting younger and younger day by day, is that the effect of mastering C++ and 3d graphics after the headache is over :D
The main difference between some of my uni classes and your YT series, is that I understand all of what you have to say, in compile time. No extra learning required.
Cherno: Bitwise operators
Also Cherno in the same video: How capacitors store state of bits in RAM
You are one of a kind programming tutor.
Topics suggestions
1. Variadic templates
2. Regex
3. Memory model in C++
4. Perfect forwarding
5. SFINAE
Yea I’d love a regex video
Cherno 2021 : "Compiler is smart, smarter than you probably"
Somehow I feel that Compiler really is smarter than me XD
At last! Thank you, I learned a lot from your c++ series and now it's back, I'm so glad!
I'm about to finish the C++ series and now this DLC!
free DLC is always appreciated
Wow, now you're into some computer engineering stuff! You told me in 20 mins all that my university teachers were telling me for 1 year. Well done, The Cherno! Make more videos like this! Thank you!
Oh yes, bitwise operators, thanks!
Great explanation! However, I think it's important to distinguish between binary value and binary representation in memory. What we have at 16:23 is (little-endian) representation.
Say you have 255 and not 5, so 1111 1111 0000 0000 0000 0000 0000 0000. Now because it's representation, after bit-shifting the value by 1 to the left,
you would have 1111 1110 0000 0001 0000 0000 0000 0000 in representation, which is correct, but it's not clear how the 16th bit became one.
So for clarity, I believe it makes sense to demonstrate bit-shifts on the binary value:
0000 0000 0000 0000 0000 0000 1111 1111
This is by far the most comprehensive introduction to bitwise operators I have ever seen. Really good content
This is very useful when someone wants to program CPU, MEMORY stuff like that
Dude your work is amazing you explain this stuff in a fun and cool way
I apreciate your work broo
Thank you so much
Thank you for continuing the c++ series. So far the c++ series have helped me with my study and work. Greets from the Netherlands.
I'm very happy to see how the TH-cam and Twitter pools were effective!!! Thanks for listening us! Wishing you a successful NEW period and many more views!
My favorite and goto playlist for reviewing C++ for the past few years! I've also been following your OpenGL series and both have been very interesting and helpful. Thanks a ton!
Soo happy to see your video notification on my panel again
It's been a while
Finally, I have just finished watching this playlist (at the moment there are only 96 episodes), God, in 2 weeks I watched almost 100 videos at 2x speed. It was during these 2 weeks that I learned a lot of new things, and once again I was convinced that C++ is impossible to learn, because it is replenished.
Thanks a lot Cherno, you're an incredible person, I'll start watching the OpenGL learning playlist soon!
Greetings from Russia!
You have no idea how happy I am that you are continuing this.
You are by far the easiest person to follow along regarding CPP teachings.
I've done courses on Udemy by professionals since you stopped uploading to this series and none of them are as easy to follow along as you are. That being said I still learned a lot from them. But some of the technical stuff, regarding memory and stuff you are the easiest. I think because you go into Assembly sometimes and show the backbone.
It does a lot to help people *actually understand* what's going on.
"Any fool can know, the point is to understand" - Einstein
Oh man, please keep on doing this, I'd love to see more c++ series videos to come.
Thanks for coming back mate! These are the best coding tutorials on the internet.
Hey, you still alive! :D
I come from the OpenGL playlist, you're amazing teaching, thank you!!!
Nice to see you back in this series! Great video as usual
Hell yeah!!! It's been 84 years... but definitely worth the wait 🙌
You took our advice. Thanks. Now I am 😊 🤗
One thing I like about C/C++ is the bit-fiddling capabilities. Used these operators for many years for filtering and and analyzing electronic measurement data. Eg: lends itself nicely to things like 2’s complement conversion and arithmetic operations of binary data.
FINALLLYYY THE CHERNO HAS COME BACKK
thank you !!
Next -> Modules and Concepts
Dropped it literally as soon as I needed it for my OS class. Thanks so helpful!
good to see you back! and also really loved the new style of explanation.. hope to see more like these!
I love you man! I learned so much from you! Thankyou!
bro you are amazing, you have just simplified the concept more than enough. thanks.
I love the new thing with you drawing pictures to further explain what you're talking about, it makes it very easy to follow.
It’s a pleasure to see again. Welcome back
That bit shift explanation was amazing, I thought the doubling and halving were coincidental until this video. Thank you!
Thank you SO MUCH for making these Bitwise operations videos. I feel like every time I start feeling like I'm learning to program better, I see a snippet of code either in your code review series or something on StackExchange and there's Bit-Shift stuff happening everywhere and it's always made me feel so dumb and confused about what the point of using it was or when I'd need/want to use it. Thank you for making this!
Also I had no idea that the windows calculator had a programmer mode, that rules
Awesome, the board writings are definitely helpful.
The best explanation of bitwise operators and binary I have ever seen. Amazing.
Aha, I came across bitwise operator recently and someone on internet has made a whole video about that. Thanks Cherno!
The thumbnail is staring into my soul
Best c++ course ever!!!
Without going into details . . . . . capacitors . . . . . binary . . . . . endianness . . . . . hexadecimal . . . .
i love this series
really like the blackboard style explanation, good video
Omg yes!!!!!!!!!!!!!! Low level!!!! OmG!!!!
Prograsm
@@mayushkumar1623 very
The C++ series is my favorite way of learning c++
Yaaaay
You're back.
I love learning C++ but I'm not a fan of game development, so this series is great for me.
Love the drawings. Feels a lot like watching Freya Holmers’s stream / tutorial - very visual and easy to understand
Glad we're back to the C++ series and great introductory video. I'm eager to see the next ones now!!
Ну, наконец то! Дождались.🙏
Yes!! This c++ series it the best on youtube!
Just came across what bitwise operator was yesterday and now the Cherno explanation - heck Ye!
So the decimal system is base 10 and binary is base 2. Shifting left is essentially adding a zero to the right of the number, which is multiplying by the mathematical base. So in decimal adding a zero to the right is multiplying by 10 and in binary it's multiplying by 2. Same with shifting right being like removing a place from the right, or dividing by 10 in decimal and dividing by 2 in binary.
Cool! I never knew this, but this makes things really clear. Thanks!
It’s a pleasure, back to seen again.
Oh yes!! right on time bro!
Glad to see another video from this amazing series that kick-started my C++ career.
the old Cherno is back
I loved the extra information (sidetracked) in this video. I think it added useful additional content. Thanks.
so happy to see you back! never forget your precise & deep explanations of the topics
Can't wait for new videos about the topic!
holy shit cherno this is awesome, thank. I understood the binary thing like magic. Thank you so much
Thanks. Visualizing your explanation makes it much easier to understand.
You actually saved my life multiple times, you explain things so well
Finally C++ Series !!!! Thank!!!
Thank you so much for this. you're the best at teaching c++
Really good, can't wait for the next video, you should do more with "Compiler Explorer" and what about an assembly playlist ?
A c++ video woo
Welcome back king!
Awesome! I'm no beginner but I didn't know the compiler optimised power-of-two multiplications into bit shifts. Something for everyone in these videos, glad you're returning to it!
Jump to 15:29 to learn about bitwise operators, bitshift left and bitshift right.
How does it feel to be one of the best C++ resources out there?
Keep it up! The quality of the videos is just getting better and better!
Nice to see you after a long time😀😀😀
Wow! Great! Thank you Cherno!
We want at least one C++ episode per week! Great series!
14:06 laughs in fast inverse square root madness
Wow, you started the series about c++ ~4 years ago, and keep doing it
That coffee ending, mmmm.
Great video, I'm a complete noob at C++, but so far I love it.
I actually really needed this, thank you!
Thank you for the in depth explanation! These make way more sense to me now.
О слава богам ты вернулся! твои видео напрямую влияют на всю индустрию разработки на с/с++ :D
The whole drawing thing is beast 👌
hey, i love that the series continues! can you make a video about testing? i think this is a very important subject that the playlist has not yet covered... thank you so much, love your video(s) :)))
Thanks a lot man for talking about this topic. Normally bit shifting always had jumped over my head because I couldn't make any sense why it works like that until this video. Your in-depth explanations is really amazing. Waiting for next video. ❤️
looking forward to seeing the series continue
Just when I have an assignment on the topic. Thanks Cherno
Thank you man, your explanations are rock solid. +1000 didactic for the use of a pen tablet
Amazing video, thanks Cherno!
the timing of this topic is perfect
Just found your channel from trying to learn this please continue this mini series
Awesome! Been waiting a long time for a video on binary operators 😁
Tried to watch this with automatic generated captions. Hilarious! :D
(Great episode though! )
You’re doing great, dude! Been learning a lot in your channel. Thanks you for spreading knowledge.
Beautiful explaination... Thanks to Teacher Sir...
Thanks for the whole information. It was very helpful!! Including all the introduction
Cherno at 6:10: int a = *ś*
Me: Wait... that's illegal, it won't work!
Cherno: it's 5
Me: oh...
I absolutely love this series, and therefore this video, but I find it funny that I'm 14 out of 22 minutes in and you've barely spoken a word about any of the bitwise operators listed in the intro... I do appreciate the tangential conversation about word notation though, makes me feel good to have a clue what you're talking about. :P
The Cherno is back.. tall & strong😎!!
Welcome back brother!🔥😊🤗
Great Video! Thank you Cherno. Looking forward to your other videos.