📚 Learn how to solve problems and build projects with these Free E-Books ⬇️ C++ Lambdas e-book - free download here: bit.ly/freeCppE-Book Entire Object-Pascal step-by-step guide - free download here: bit.ly/FreeObjectPascalEbook 🚀📈💻🔥 My Practical Programming Course: www.codebeautyacademy.com/ Experience the power of practical learning, gain career-ready skills, and start building real applications! This is a step-by-step course designed to take you from beginner to expert in no time! 💰 Here is a coupon to save 10% on your first payment (CODEBEAUTY_YT10). Use it quickly, because it will be available for a limited time.
@Shad0wBenny3 жыл бұрын
Hi! Unfortunately, your BuyMeACoffee page only supports PayPal. Please add more payment options.
@anthonyduran26273 жыл бұрын
when I used "cout
@Shad0wBenny3 жыл бұрын
@@anthonyduran2627 More info needed to answer your question. Which video/exercise are you referring to?
@8191-m8t3 жыл бұрын
wol.jw.org/en/wol/binav/r1/lp-e
@ysosrdude3 жыл бұрын
@@anthonyduran2627 address should be with an & ig
@agny3693 жыл бұрын
These videos are easing my anxiety because of the clear, direct way of explaining things, rather than my indirect, abstract focused professor in data structures. Keep up the good work
@Somewhat_Sassy-Commentator2 жыл бұрын
I disagree. Though she is great. It’s best if you take each subject and write it in your own words. Or create a script that you can present to others. Which would help you to organize your thoughts and understanding. All the while, think terminology is the key to understanding.
@MSha-Techy3 жыл бұрын
Better than all university instructor I've ever seen. You magically explain the simplicity hidden behind apparently complex ideas . Thank you Saldina, thank you very much! Very happy to get to know you on KZbin.
@Emptiness-3 жыл бұрын
56:47 Return Min and Max with class: -Create class with private variables Max Min -Create Constructor with input array and size as arguments as well as 2 functions in it to find Max and Min -Create 2 public class methods to return Max and Min -In main(); create object with test array and size; cout the class methods for Max and Min
@GeoffLord3 жыл бұрын
Oh i am definitely team C / C++, these tutorials are very good and have helped me clarify problems i have had with pointers. You are a good teacher!
@kyalang74722 жыл бұрын
I haven't coded c++ in a couple of years, and always have felt so lost while trying to relearn concepts, but watching these videos helps my coding anxiety immensely. I also feel like now I can understand concepts better, and go into the developer field. Thank you! Your videos are addicting.
@EmmanuelUmozurike3 жыл бұрын
I am more than impressed about your natural and easy flow teaching and presenting C++ concepts. Makes learning fun and interesting. Thanks for all your hard work. I am a C++ new bee. I am learning C++ to enable me write embedded code and for robotics as well. Both C++ and Python3. I will continue watching and learning from your videos and also show gratitude!
@felixbaptista207 Жыл бұрын
Hello Saldina I'm from free code camp. Your explanations are understandable to me. The best tutor c++ in You Tube.
@andreialexander4052 жыл бұрын
Without a doubt one of the finest lecturers you'll ever come across: amazing ability to present the root of any matter with just a few examples that are so straight-forward. Can't get over how brilliant this girl is.
@cosminmoldovan34443 жыл бұрын
Your explication about multidimensional dynamic arrays was pure class. I had some serios issues with that but now everything is clear because of you. We need teachers like you !
@CodeBeauty3 жыл бұрын
🤞😃😃🤗
@CodeBeauty3 жыл бұрын
🎁 Detect bugs and errors in your code with PVS-Studio: bit.ly/PVS_Studio You can use promo code: #code_beauty to get one-month free trial, and if you are using PVS-Studio to learn or to work on private/open-source projects (non-commercial use) you can contact the PVS-Studio team to renew your license for free once your trial expires. ❤️❤️❤️
@Bladermishal103 жыл бұрын
Is this somehow better than the compiler errors?
@CodeBeauty3 жыл бұрын
It discovers a lot of errors that the compiler will miss, and it also has good explanations and examples when you click on the error code 😃😃
@ismail.dalhatu3 жыл бұрын
25:12 breaking out of the switch??
@Dina-he1uc2 жыл бұрын
Sad that I've spent 2 terms in school learning programming yet I have never understood pointers as much as i thought i did. I remember always freaking out whenever i see an expression with two **, or with an &, and did everything in my power to program without pointers. Now I feel confident enough to use pointers regularly and enhance my code. Thank you so much!!
@CodeBeauty2 жыл бұрын
I'm happy that my video helped you! Wish you to become a great software engineer ☺️☺️❤️
@ffnam12992 жыл бұрын
Saldina, these are wonderful lessons. I was a software developer in the past and this is perfect to tune up and get back in the game. However, after a dozen hours of your lessons, I now type cout while saying "cout" with a Saldina accent. I'm a native English speaker so your accent adds great charm to your videos. Thank you for your efforts and helping us with C++!
@alimaghami20762 жыл бұрын
The best part was the multi dimensional dynamic arrays. I could not understand them. You made them clear. Thank you very much.
@ManasTunga3 жыл бұрын
Finished watching full course , loved it. Thanks for making examples small to the point. You became my first coding female tutor. Again thanks for making this video
@Farlid578682 жыл бұрын
After 10yrs trying to learn C++ I am glad I found you, you are an awesome teacher, I am just sad because I didn’t find you long time ago. Thanks so much Saldina.
@supersayandude.8083 жыл бұрын
I already know C++ pointers since 2017 and i watch your vids just for refresher. And hey its good to be back. I LOVE pointers.
@staz8671 Жыл бұрын
You are still my favourite C++ tutor on KZbin👌. Came back for a refresher and your explanations always hit the mark.
@MGJ1823 жыл бұрын
Totally amazing, might very well be one of the easiest-to-follow tutorials anywhere. I love your clear and direct vocabulary, it makes it much much simpler to understand complex concepts. Much love! ♥️
@CodeBeauty3 жыл бұрын
Thank you so much! 😃🥰🤗
@anthonyduran26273 жыл бұрын
@@CodeBeauty when I used "cout
@vroommoorv15402 жыл бұрын
@@anthonyduran2627 I know this is quite old, but in case others have the same problem, this is a g++ thing. g++ is casting the unknown function pointer to a bool type, so to get the address we need to first cast it to either (void*) or (int*) when we redirect it to cout. e.g. cout
@ronnierana44043 жыл бұрын
Pointers really gave me a hard time couple weeks ago, your pointer playlist cleared all my doubts! Thank you very much Saldina! ❤️
@8191-m8t3 жыл бұрын
BIBLE
@ronidaffan59042 жыл бұрын
Your lessons are so well done, clear, and inviting. I love it! Thank you so much!
@leifwatkins72772 жыл бұрын
I cannot thank you enough! You are really good at explaining concepts and have helped me a lot in filling in some missing gaps for me. You have inspired me to start a channel of my own after I graduate to continue to make Programing accessible to all. ✌🏼💚💻
@virgoash77753 жыл бұрын
Thanks a lot Saldina. You couldn't be a fashion modele, but you are a human module, may God bless you.
@dShooot3 жыл бұрын
Moving from C# (Unity 3D) to Unreal Engine (C++). Thanks a lot for covering all neccessary topics!
@omergursoy7982 жыл бұрын
I wish all speakers were like you, just watching for practise my english and a bit of c++ knowledge repetition, it comes out where I missed.Thanks so much.👏
@4xhappinessinc.8842 жыл бұрын
We should require college professors to watch this first before teaching pointers in class.
@omaralaa68392 жыл бұрын
- Dear, Saldina, Live long and prosper! Your tutorials were such a big help on my journey 🌺 Bunch of thanks to you and keep it up 🔥💪🏻
@rogue_gamer24903 жыл бұрын
2 n half hr on pointers omggg !! its totallyy greattt , glad u made video on pointers , i hope its gonna clarify all my problems
@amrm_a77712 жыл бұрын
I don't comment on or like the videos very often but this really deserves the like and the comment , you did an amazing job and explained complex concepts in a simple way that helped us self-taught programmers to continue.... Thank you ☺
@CodeBeauty2 жыл бұрын
I appreciate that you dedicated part of your time to show support like this 🤗🤗
@amrm_a77712 жыл бұрын
@@CodeBeauty no problem, I mean you deserved that a 100% and you even deserve more views,likes and subs to be honest.
@sahiljaiswal29042 жыл бұрын
FROM INDIA AND I CAN BET NO OTHER VIDEO CAN COMPETE WITH THIS AND THE BEST PART WAS 2-D ARRAY WITH POINTERS EXCELLENT EXPLANATION
@official_ardi48403 жыл бұрын
I still remember I came here from free code camp watching your video about OOP, it helped me a lot. Hope this could be great too Also I like the way you speak, its easy to listen for me who still learning english Keep up the good work!
@CodeBeauty3 жыл бұрын
Thank you. 🙏💙 I try to speak as clearly as possible, because programming is sometimes complicated even when you are native speaker, let alone if you don't understand the language 🤗🤗
@MelihDumanli3 жыл бұрын
I'm here with the same reason :) Thanks so much for your effort Saldina 👍🏻
@bobbyphan84413 жыл бұрын
Saldina, Thank you so much for the thorough and organized explanation of pointers. Pointers originally made me lose faith in C programming when I first started and I wish this was available back then!
@Embedded_Chuy2 жыл бұрын
I have to say that these channel is amazing for learning from the basics to more complex like pointers, threads, keep going.
@tiantianliu5958 Жыл бұрын
Great! This really helped me study for my technology c++ coding!
@subashrajnatarajan2 жыл бұрын
you are unbelievable been searching all along someone like you to teach c++
@sivasankar46812 жыл бұрын
So far I was only team C, but after ur classes im definately now team C++ , Thank You for ur easy and clear explanations. I feel so much confident with C++ now.
@diegocris4548Ай бұрын
wow, so clear and focused, i was struggling understanding this until i stumbled upon your videos, thank you
@matthewparisien35042 жыл бұрын
Thank you for your wonderful tutorials they are so clear and helpful!!! Forever grateful
@micksail33412 жыл бұрын
Clear Points on Pointers. Congratulations! Your Topic About Cleaning Up after Dynamics Operation is SO IMPORTANT. I came across another example of Dynamic Arrays and Pointers and In the example there was No Cleanup Code for Dynamic Array. I Continued on and Visual Studio had a Heap Error. I quickly Coded your Example of Cleanup Codet to Delete Array and that Did it. Thank You CodeBeauty for your Thoughtout Knowledge of Cleanning Up Yourself. God Bless and Take Care.......-------end of line ---------
@py2pw2 жыл бұрын
Hi Saldina, I just wanna say thank you for all the Knowledge you share with us .... Greatings from Brazil !
@danishfarman-g7h Жыл бұрын
the most simplest way of teaching so that anyone can understand on all platforms.
@YothinInbanleng2 жыл бұрын
Thank you Saldina, your lessons are easy to learn in difficult things.
@anxonpues60182 жыл бұрын
Clear, as always, best English pronunciation since Winston Churchill!! I tried tow things, one to ask value of memory positions over the pointer and tried also to find where in memory is the «name» we gave to the variable n, ptr, or WinstonChurchill... I con't find nothing about the second, but the first gave me no problem at compile time but say stack corruption around n an run time... #include using namespace std; int main() { int n = 5; cout
@wFex.q7 ай бұрын
Thank you Saldina. I learned so much things from you. Thanks that all.
@CodeBeauty7 ай бұрын
🥰🥰
@AdityaSingh-ui4tr3 жыл бұрын
Thank you so much Batman!🦇
@CodeBeauty3 жыл бұрын
🦇💛
@francescodargenio819 Жыл бұрын
You are the only that make me understand how pointers works. Tank you so much.
@sankethp31383 жыл бұрын
I came here from free code camp watching your video about OOP and you helped me learn pointers .thank you so much
@mccrispysparks Жыл бұрын
That was amazing! What a brilliantly executed tutorial. You made pointers way less daunting and taught it in a way that actually sticks. Thank you so much for this course and for your entire channel.
@Superloko3613 жыл бұрын
Got here from a facebook ad. Didnt expect this much good tutorials. Subbed and "belled" all notifications, looking forward for more good content
@tendayint413 Жыл бұрын
This is incredible stuff. Just finished going through this and I feel enlightened to say the least. Definitely the best C++ teacher on KZbin. I would recommend to others that if they are having difficulty with Cherno (probably because like me they are jumping all over the place like some gardam maniac), whose focus is tilted to gaming systems go through and understand CodeBeauty first as her process is much more palatable. Digital hugs all the way Saldina - wish I could like twice.
@harini_kb8 ай бұрын
Been searching for new and free explanation for so long and yours was clear and to the point where I can explain it to someone even if they woke me up from my sleep. Thank you!
@samman35010 ай бұрын
Great! Listened to this tutorial on headphones while also listening to earth song by M. Jackson, fantastic combination!!
@jms78052 жыл бұрын
Hi, using VS C++ 2022. Excellent training on pointers. I'm an Electrical Engineer in private practice and have two 10+ years old VB programs; use everyday. Both use forms but with poor graphics and new VB development not popular and gone . Want to modernize my programs. Use C rarely, but want to use C++ for some features with forms--in particular WxWidgets which has great form flexibility. Got to get pointers and function pointers clear in my head just to understand their API calls. Though I may be biting off too much and may have to go with C#, we'll see about that. Your videos on pointers, Class. Polymorph etc. are great "relearning" exercise for myself.
@mortezafarshchi80032 жыл бұрын
The hardworking, knowledge and explanation simplicity behind making such a video is precious and worthful. Best of the best.
@morshedraiankhan69682 жыл бұрын
Successfully completed. Great discussion on C++ pointers. Thanks.
@moularaoul6433 жыл бұрын
Good!!! Thanks.
@CodeBeauty3 жыл бұрын
🥰🥰
@thomasfreygang87943 жыл бұрын
Ihr Weiber seit Klasse! Unbezahlbar - vielen Dank für eure Arbeit.
@dannyfarias660710 ай бұрын
This video is amazing, i have my programming exam next friday and this helped my so much.
@khaledgamal782 Жыл бұрын
In fact, I do not know how to thank you for this wonderful video. I am from Egypt and I am trying to learn English and programming together. Your videos help me a lot. Thank you very much. 💙
@feliciateong9987 Жыл бұрын
I have a programming exam tomorrow and I just found out about your channel today. I wish I knew about this channel earlier. Thank you so much for making me learn so many new things in a very understandable way one day before my exam!! Will definitely recommend to all my friends :)
@godussopsama1442 жыл бұрын
The Most underrated Channel for programming(sad). Each and every lines were clearly explained and easy to understand for beginners. Hope this channel gets Millions SUBS!!♥
@CodeBeauty2 жыл бұрын
I'm happy to hear that. Thank you so much! ❤️❤️
@royken97953 жыл бұрын
One of my friends who's a software architect and a very good coder, recommended me your channel. At first I didn't have big expectations, but now I know why he recommended me your channel :) I can see you're clear when explaining, teaching elegance in code, and the why behind every step to not get lost behind "unseeable" things. Also I have to point out your english is really understandable for a spanish guy like me, there's not a word I didn't understand, good job, liked and subscribed :D
@kiambojyms21962 жыл бұрын
Thanks again Saldina for the Pointer tutorial.
@davidmesaros97333 жыл бұрын
Wow! Very useful course! Pointers have been a very confusing part of C++ for me, but you simplified everything! Thanks a lot!
@alijan13636 ай бұрын
for all lessons , you had a great explanation. it was really useful.
@Coding_Bits Жыл бұрын
The perfect and the beautifull teacher in the world, thank you so much for your effort.
@technicalmaster-mindАй бұрын
Damn you taught better than Soo many KZbinrs I watched More clear than crystal It's specifically bcz of your examples on each thing are more classy
@frodobaggins39743 жыл бұрын
The ‘Function pointers’ chapter should be a compulsory video for anyone trying to understand C# delegates. Very well explained!
@stephanieezat-panah77503 жыл бұрын
I was thinking the same. thanks
@grankoczsk3 жыл бұрын
You are amazing 💪🏼
@sonwabomakinana79622 жыл бұрын
Wow she's so great, enjoying your tutorials deep down in gauteng province in South Africa 🇿🇦🇿🇦🇿🇦
@hsngraphics8228 Жыл бұрын
the way you convey is amazing. i easily pick up your concepts
@ΗλίαςΠαπαθανασίου-τ1ψ2 жыл бұрын
One of the best tutorials i have watched! Very well explained!!
@boli66582 жыл бұрын
Thank you for sharing your experiences in C++
@rasputindasilva8583 жыл бұрын
God bless you sardine, your tutorials on pointers saved my job, i want you in my plate.
@scrpld71113 жыл бұрын
Thanks for the beginners course just finished it and it was very good quality. I think pointers got my head a bit confused, but maybe some small own projects with pointers could clarify it more. I usually code from your example but after I try to code some additions or modify the code.
@GascanNBK Жыл бұрын
very professional and clear explanation
@nachiketpushkarna32952 жыл бұрын
You explain things so clearly. Thank u so much. God bless u.
@furkanfiratli79083 жыл бұрын
Just finished the function pointer part. Amazing. Thank you!
3 ай бұрын
Awesome! Learned a lot about points that I didn't know.
@Its._.art_ Жыл бұрын
Your lectures are very helpful , thanks for sharing quality quality education. ☺️
@wordonice44573 жыл бұрын
I'm totally loving this, CodeBeauty. I have a question. On the multidimensional arrays, you did this when deallocating memory after the for loop: delete[] table; table = NULL; Why didn't you do the same within the loop? Like this: delete[] table[i]; table[i] = NULL; Shouldn't the same rules apply? Thanks. Love your channel!
@lhaellor3 жыл бұрын
YOU ARE A LIFE SAVER THANK YOU!
@reniboyanova9388 Жыл бұрын
Hi Saldina! Thanks so much for this video! Your explanations fit perfectly with the way I learn! Could you tell me how you improve your English speaking skills?
@Kavitakumari-pq3ks3 жыл бұрын
I thik this tutorial is protected, that's why some of us have access. btw your videos really helped me to learn c++ very easily and I'm still learning. Thankyou so much for all this hard work you do. Thankyou so much and lot of love from INDIA🇮🇳🇮🇳🇮🇳
@CodeBeauty3 жыл бұрын
There is no other explanation 😲🤔 The video is protected and I have to add description and all, but for some reason a few people can see it 😃😃 You edited your comment, so I'm also editing mine: Lots of love for India 🇮🇳🧡💚
@amk22983 жыл бұрын
@@CodeBeauty u r really very cool , down to earth and intelligent person, and btw the ""batwoman shirt"" makes me wonder, are u the batwoman from the movie😁😁, I remember it from ur freecodecamp video I guess..
@foreverlostinthematrix21502 жыл бұрын
I really appreciate all your video tutorials, you explain things so well, better than any other professor I've been with. They never seem to know how to properly teach c++ to beginners. I would be failing my current class without your tutorials, my professor just doesn't simply know how to teach c++ and just throws the book at you which is no help.
@DaBaSoftware2 жыл бұрын
Great reference! Will definitely be looking into PVS!
@dreambig15643 жыл бұрын
COMING FROM FREECODECAMP FROM OOP C++ COURSE THANKU FOR THE COURSE
@baldwen3 жыл бұрын
That's what i needed. Thank you sooo much!
@bobs3694 Жыл бұрын
Dark theme good!🍎 you are the best teacher .
@someshsangwan53022 жыл бұрын
Love the way you explain ! thnq maam
@ashisharyan91502 жыл бұрын
Hi sister i had some problems in pointer but after watching this video i gained confidence.love from india . very nice 👍 explain
@jDaniel572110 ай бұрын
She makes learning so much more enjoyable🎉
@charlessherwinsangabriel15762 жыл бұрын
Great Video Saldina! I'm halfway on finishing it but I just want to ask or rather suggest on making a new video about keyboard shortcuts. Very much appreciated.
@99Anonymous9992 жыл бұрын
Why aren’t you my college professor damn if you were than I would have been amazing in coding which probably I am becoming now after watching your videos very deeply. Love your videos. Earned a subscriber ❤
@99Anonymous9992 жыл бұрын
Wow 🤩 @CodeBeauty you liked my comment 🎉
@99Anonymous9992 жыл бұрын
Thank you❤
@MrJQ3d Жыл бұрын
Hi Saldina, you're wonderfull, very usefull lesson, amazing content and explanation, helped me a lot thanks.
@nature-water2 жыл бұрын
WOW sa you are the spacial one . Thank you vary much for all your video sa.
@Genius54382 жыл бұрын
Excellent. I came across your videos and I must say your explanations are sooooo clear and straight to the point. One of the best videos I have found on YT. Keep up the good work.
@pruxi86622 жыл бұрын
Thank you so much for simple vocabulary in addition to your explain is great , keep moving ❤❤❤❤❤
@itsreallykashish2 жыл бұрын
Great Video, Thanks for putting efforts, Just pointing out one thing at time 31:46 , instead of saying that it will add the address -> it will increment the address by the ( size of the data type of the array x Index )