📚 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. Code from the video: #include #include using namespace std; void main() { vectornumbers; //numbers.push_back(0); for (int i = 1; i
@ProjectVastness2 жыл бұрын
Thanks for one more video, this remember me good all times when I was learning C more than 25 years ago.
@hilgicamala25202 жыл бұрын
saldina thank you so much for this video, your videos are the best
@programmerdev72512 жыл бұрын
good work
@JPEaglesandKatz2 жыл бұрын
Hope you are doing okay!! Haven't seen you around for a while... Your videos are top notch!! Take care!
@normanhenderson7300 Жыл бұрын
So Code Beauty, after explaining the disadvantages of dynamic and static arrays, under what conditions they are useful in programming?
@heikin55629 ай бұрын
Your way of explaining is so practical and easy to understand. I've learned a lot by watching your lessons everyday. Thank you!
@andrecorrea69572 жыл бұрын
I'm starting over from 0 and remembering everything I learned at the computer science university I did here in Brazil. I was away for a long time and I encouraged myself to move on, you are really amazing, you are helping me a lot.
@Pepespizzeria12 жыл бұрын
Very new to coding, just finished your ten hour coding video on c++, found the diagrams extremely useful and the explanation, this video was useful to, thank you
@CodeBeauty2 жыл бұрын
Happy to hear that. Diagrams are a great way to learn programming, they help you to visualize code even when you don't understand the commands. 😊
@ramakrishna40922 жыл бұрын
@@CodeBeauty hi mam I have learnt programming languages by watching your videos in channel . yesterday I have given an interview almost I felt got a job but the final question was too unexpected by interviewer. she asked me return two 2d array from function without heap . I said we can create a static array and return to the main .she also asked me to implement the code but I didn't get the correct answer . later interviewer told the prototype of returning 2d array is not correctly written . pls mam I am requesting can you do a video on this topic... love from India..
@paulkap1211 ай бұрын
Among many other youtubers that I tried to get help in my C++ learning, you are really the best one! Thank you!
@gollygobih65272 жыл бұрын
I watched all your videos about arrays, dynamic arrays and multidimensional dynamic arrays, so I knew this one is going to be great as well. Thanks Saldina
@CodeBeauty2 жыл бұрын
I'm happy that my videos helped you 😊💜
@SDot2282 жыл бұрын
Your C++ videos have been a lifesaver. Thanks for making it easy to learn. Any plans to do a video on runtime analysis/optimization?
@l.p.19672 жыл бұрын
amazing explanation, cleared all my doubts as always
@nv9usb3812 жыл бұрын
I was waiting for this video, love it!
@dundyd36122 жыл бұрын
very helpful, i finaly understand when to use arrays (Static) and when to use vectors. thanks saldina
@cristianomoreira33052 жыл бұрын
Oh.. Saldina, you have the best channel of programming in this world. The BEST, now I'm a python/JS programmer but I watch your videos just because your explaining is perfect! Thanks for this!
@yeromin_g Жыл бұрын
Such a lovely and smart young lady! Pure pleasure to watch your videos and learn with your help. Keep going!
@clandeszipp45642 жыл бұрын
I applied to CS BSc studies today. Wish me luck! 🤞
@elonfc2 жыл бұрын
Same here bro ,did ur colleges start?
@nocopyrightgameplaystockvi2312 жыл бұрын
Best of luck bro.
@mirahamdan73692 жыл бұрын
this is perfect timing i was just hoping to find a vector video by your great channel
@JarekAtWork Жыл бұрын
I want to say thank you. I watched all the episodes, it was an amazing adventure. I started with the basics, then functions, pointers and then data structures. I think I am ready for object-oriented programming lessons. I must admit that this will be new to me, but with your help, I am sure I will be able to understand this concept.
@alishafii9141 Жыл бұрын
hi dear saldina , i am 48 years old and I am beginner , you give me as gift more than gold and diamond, you give me "TIME" and "UNDERSTAND", your tubes reduces time of learning and save it and gains performance of understanding. please continue
@IAmIshanSaxena2 ай бұрын
Yo Saldina, back here after 4 years, great to see everything's going good Great explanation as always
@CodeBeauty2 ай бұрын
Welcome back!
@あい-ueo7 ай бұрын
not only the appearance, your way of teaching is beautiful. Thanks a lot!
@tuazulyrojoeljean24 күн бұрын
Always flawless explanations! Thank you very much!
@johnalvinm2 жыл бұрын
Your videos get better every time❤
@sumanthnaidu95982 жыл бұрын
*Please Make more videos from STL. And cover all the containers in STL with it's built-in functions.* *Remaining one's are :- Deque, List in ( sequence Containers ) & Set, Mult-Set, Map, Multi-Map ( Associative Containers ) & Stack, Queue ( Container Adapters ).*
@pkerr17532 жыл бұрын
I love this channel. I learn so much.
@chadidridi93062 жыл бұрын
your methods are so easy to understand unlike many youtube contents ! Please would you make some videos about Datastructures and some advances search algorithms using C++.I'm sure you can explain it perfectly!
@SRR-p7i Жыл бұрын
dear, precise and very clear explanation, easy to understand. the way you explaining etc are excellent, the name codebeauty, is like beautiful like you, and its very rare that both your talent of teaching skills and yourself very lovely and beatiful. Please keep posted.
@ducloc20032 жыл бұрын
How to focus on learning to code when there is a beautiful teacher like this🧐
@md.naimemolla85432 жыл бұрын
Hey Saldina, I coming from freecodeCamp. Ur OOP course was great and ur explanation was beautiful like u.
@CodeBeauty2 жыл бұрын
welcome and thanks 🥰🥰
@spanningtree58692 жыл бұрын
Thank you so much for starting stl series ❤ 🥰
@JarekAtWork Жыл бұрын
If the size of an array is unknown or changes during program execution, vector may be more appropriate. Vector is easier to use because it provides automatic memory management, and its methods allow for easy addition and removal of elements. In addition, vector provides many useful functions, such as sorting and searching elements, which greatly facilitate programming in C++. In summary, the decision of whether to use a dynamic array or a vector depends on the specific case and program requirements.
@lickguitars1276 Жыл бұрын
thank you for this content, you made it clear to learn and giving out the pros and cons, a lot of thanks❤❤
@maheshvelugula8418 Жыл бұрын
your videos very useful to me , thank you ,keep going
@stockdaleroger2 ай бұрын
Thank you ! it's a good guidence of std::vector for beginner. The content is very comprehensive
@CodeBeauty2 ай бұрын
Glad it was helpful!
@stockdaleroger2 ай бұрын
@@CodeBeauty 😍
@soumilmaitra94662 жыл бұрын
I am a specialist at Codeforces yet I like to study about STL vector a lot (especially this one).
@clustersnake2 жыл бұрын
Dear lord! C++ was my favorite programming language in college and now I see that exists an auto data type! I need to learn some new things!
@CodeBeauty2 жыл бұрын
Welcome to my channel, hope you'll enjoy the C++ content :D
@clustersnake2 жыл бұрын
@@CodeBeauty Oh! I love your content. I'm Venezuelan and thanks to you I am learning English too 😄
@c3rk3m4f1a2 жыл бұрын
Odlični videi , počeo sam da učim C ++ pre mesec dana pa nisam skroz savladao pointere nadam se da to nije problem i da ću vrememom naučiti . Veliki pozdrav ❤️
@CodeBeauty2 жыл бұрын
Super, javi kako ide 😀
@edgarpapikyan32022 жыл бұрын
I have changed to Dart language. But still watching your videos sometimes. Thank you. 😉
@kailas8132 жыл бұрын
Will you please plan for adding sessions about design pattern concepts? Thanks a lot for your effort and time.
@akosyt4540 Жыл бұрын
Thank you so much Saldina for this amazing tutorial 🥰.I hope you make a video about queue vs stack and their advantages and desadvantegs and which one to use according to the situation.
@marcolanza62812 жыл бұрын
Hi CodeBeauty, Most of the time, I watch KZbin videos on my TV and there's no way to make comments. I am a Software Engineer for quite some time/years and worked on and off with diff. prog. languages and etc. I have been watching some of yours and you explain the topics very well in a concise and clear manner along with the examples. I am in love with ❤
@Right_place2 жыл бұрын
Hi saldina nurak Madam.. can you make videos on DBMS ( database management system)
@faysalarab13 күн бұрын
thank you so much. Sheesh, you make data types a lot easier to understand....
@CPP_malloc2 жыл бұрын
vectors of course are better, emplace_back is one of its power, to avoid calling a constructor to create a temporary object and then move it. I realize that emplace_back can be implemented in dynamic arrays easily, but productivity is very important. as well I see no performance improvements in using dynamic arrays over vectors, as compilers already inline all vectors class member functions. as well vectors are nothing more than a wrap-around a dynamic array and obtaining a raw pointer of any element is possible. they are contiguous data in memory, which means math operators are applicable to the returned pointer. you have demonstrated all of that in the video. I also prefer using std::array over the old style of [ ], it also has no performance overhead, because it is POD struct, with only the same size of the total elements in the array.
@pvtdd Жыл бұрын
How come you don't have to do std::vector::size_type and then assign that to a variable to get the size of the vector ?
@indarklove68502 жыл бұрын
thank you! Nice work!
@toto_frs6202 жыл бұрын
could you make a video on how to make an API rest with c ++? I am looking for an alternative to Spring
@umerfayyaz25545 ай бұрын
you dropped 👑
@CodeBeauty5 ай бұрын
❤️
@mihailvrabie7644 Жыл бұрын
Thanks a lot for good information related to vectors. I have a problem to solve in c++: (Input: 1+ 5 + 3 + 4, Output: 1 + 3 + 4 + 5). The question is : can we solve that with vectors and how? Thanks in advance!
@arshmaanali7142 жыл бұрын
mam plz make video on functions and how call stack works..
@CodeBeauty2 жыл бұрын
it's an i interesting suggestion, thanks 😊
@arshmaanali7142 жыл бұрын
@@CodeBeautyMam Thank you so much😍 for providing great knowledge .You are very kind and humble.
@christopherrice8912 жыл бұрын
I'm subscribed to your KZbin channel and i have the bell notifications turned on as well. I am very curious if you can give any hints about how soon your next KZbin video will be out and also can you give any hints about what your next C++ topic is going to be about? You are an awesome teacher, you clearly explain C++ concepts so well i can re-watch your past videos over and over again.
@bubblesort87602 жыл бұрын
Thank you very much for your beautiful videos. I wish you made a video about graph data structures.
@aufauf1957 Жыл бұрын
Thank you
@OthmanOthman-c7s6 ай бұрын
Hongera wewe ni mwamba👏❤
@katiagalkina46072 жыл бұрын
Saldina tysm !👍 17:06 iterator position 1? 🤔
@chesshooligan12822 жыл бұрын
What kind of performance gains do you get by using a dynamic array instead of a vector? Why does everybody seem to think de-allocating your memory is such a big deal and prone to bugs? Remembering to put a 'delete' statement after you're done with your array doesn't seem that hard.
@yogesh1242 жыл бұрын
Can you please arrange your videos one by one with right order in an playlist
@udaykumaruday41592 жыл бұрын
Hey saldina i am free code camp. U r amazing 😚
@epic_amvs40952 жыл бұрын
Coming from freecodecamp oops lecture your videos are awesome 🙌+ you are looking cute in that outfit ❤
@joseloeza371 Жыл бұрын
so beauty and smart.... what I need... Thanks excellent video
@fidalgoverde Жыл бұрын
Excellent.
@HuyenNguyen-wm7dj2 жыл бұрын
Your video is really helpful for me. Hope you release more videos about STL vector🥰
@boonedockjourneyman79792 жыл бұрын
You are beautiful. That doesn’t matter. You are great at what you do. I searched for lessons like this. You were the best. Forget your beauty. It will fade.
@rgijsbertse2 жыл бұрын
Hi Saldina, I enjoyed your video on STL Vector. However this is the simple version of Vector values. What about a sorting Vector containing Class pointers or structs. This will need a custom sort function to sort on members of the objects. This may be a idea for an extension of this video, or maybe an 'advanced STL Vector' tutorial? I hope you can do something with this idea. Love your videos. Bye, Ron
@rebei Жыл бұрын
The value of the fifth element in the vector!
@adibahbab68592 жыл бұрын
Nicely explained! ❤️❤️ It'll be better if explain 2D vector as well in this video.
@issahtalent75112 жыл бұрын
I wish u were into Java too, I love the way u explain concepts into simple and understanding way. Thanks for the videos though, learnt new stuffs😁.
@KeyT3ch2 жыл бұрын
Treat Gits!
@atlantic_love2 жыл бұрын
I bet you have Taddy Dits.
@olebeh2 жыл бұрын
Hello. Wanted to ask, how do you put semicolon at the end of the line automatically? Formatter doesn't do it
@technicaltechnmofficial25132 жыл бұрын
Hello Ma'am You make videos on cpp which are great actually ... PLEASE CAN YOU MAKE A VIDEO ON HOW TO CREATE DB APPLICATION USING VISUAL STUDIO FROM A CONSOLE APPLICATION ...
@Prince-gf5bj Жыл бұрын
what microphone do you use?
@ayoubsa99672 жыл бұрын
this course helps me a lot really did. thank you saldina
@CodeBeauty2 жыл бұрын
🤗🥰
@sanjayramsinghani57252 жыл бұрын
I completely love your way of explaining 😍 but now i am struggling with learning git and git hub can you please make tutorial for how to use git and git hub please
@sir_alist2 жыл бұрын
github
@s0hni192 жыл бұрын
very nice! im interested in the usage of c++ 20 modules. would be nice if we see that soon
@Thebiggame-dc8ek Жыл бұрын
Thanks for the useful subject. I wonder why we can't use it(the iterator) by itself for gaining the address of an element of the vector if it is a pointer. And also why it wasn't defined as a pointer, like: int *it instead of being auto without asterisk. I appreciate if someone gives their comment on it. thanks.
@zapped52722 жыл бұрын
Is it better to use Visual Studio or VScode?
@irfanmalick50732 жыл бұрын
YOU ARE SO PREETY AND BEAUTIFUL AND URS STYLE OF TEACHING IS GORGEOUS
@irfanmalick50732 жыл бұрын
u also make video on python
@mosslnnx Жыл бұрын
Thank you 👍
@matthewparisien35042 жыл бұрын
Thank you as always!!!!
@CodeBeauty2 жыл бұрын
You're welcome 🤗🥰
@NageshNani_282 жыл бұрын
Hello codeBeauty, how line space will be taken automatically, it's amezing but how?
Жыл бұрын
I miss explaining the difference between [0] and .at(0). [] doesn't check if the value it's valid and .at() does, throwing an exception if it's past the size of the vector.
@gleenji100862 жыл бұрын
I love studying!!!!!!
@CodeBeauty2 жыл бұрын
Maybe you could share a few tips regarding this, beacuse many people study only because they have to 😄😄
@AlaaDablan2 жыл бұрын
Saldina, ur tutorials are bloody amazing; thanks a lot. However, I really would appreciate it if u dedicate some videos to embedded systems (using Eclipse IDE, STM32 IDE, TI...; if recommended). Introductory projects; nothing more. Thanks again for all ur efforts.
@nataliagrace57172 жыл бұрын
Hi I'm new to this channel I recently started watching your 10+ C++ Course and I love it so much!! The way your explain everything is perfect for me and it helps me understand a lot. I was wondering what is your accent? It's so pretty but I can't figure it out lol. :)
@LucaCanali2 жыл бұрын
you are a amazing girl ... each video gives us more knowledge and tips
@kenzo34772 жыл бұрын
Hi Saldina. Am glad to let you know that you saved my life through easy to comprehend lectures. Thanks so much Madam. Truly, I tell you that your tutorials can make Ben Carson abandon Medicine and be a Software Engineer. Lol. Anyway, just wanted to know,,,, is it in your will to do tutorials on other languages like Javascript or even some web dev frameworks?? If so, am patiently waiting for the publishing of the first video. You amazingly awesome with how you teach us. Thanks so much. 🙏
@matteoferraretto10122 жыл бұрын
Very useful, thanks!
@warunagunarathna7214 Жыл бұрын
thank you 🥰
@cocwtfmoments60292 жыл бұрын
I want to ask you a question, please tell me sir. Write a program to create a text file called " Student.dat " which includes student's rollno , name and mark entered from the user.
@atlantic_love2 жыл бұрын
Get lost, troll. She's a woman.
@shayanchabook76562 жыл бұрын
Hi, hope u r fine. I was wondering if there is any way that you can transfer the content of a struct vector into a struct through STL algorithm in C++?
@technicaltechnmofficial25132 жыл бұрын
Hi ma'am please make a video on "KEYBOARD AUTOMATION" using C++ . Through which i should give an input to another application using C++ program .
@टिल्लूमर्चेंट2 жыл бұрын
Ma'am please make a video on Python. Love from India.
@asimuddin32222 жыл бұрын
Thank you . Can you teach us about algorithms please. I hope it will be superb for your content and it will help us too.
@kailas8132 жыл бұрын
Thank you. Very helpful. I am also watching all your c++ related, I wanted to share one concern as the viewer, Could you please include interview questions on the topics at the end of each session? It would be much more helpful for someone like me who preparing for an interview. Just a request concern :-)
@Man-gm3tx2 жыл бұрын
Thank you very much
@MuravaDnevnik2 жыл бұрын
Wow
@hangugsalam63832 жыл бұрын
thanks for all videos i am waiting for you to make an video for consts and especially consts in functions!!!!!!!!!!!!!!! it is hard to understand i think
@icyds2 жыл бұрын
Thumbnail twins look amazing, but you already knew that 🌹
@TheMaxKids2 жыл бұрын
Simping is lame.
@icyds2 жыл бұрын
@@TheMaxKids Too many "red-pill" lessons will have you turn on your own brothers dork.
@Dingdongbubbble10 ай бұрын
omg i love vectors
@maheshvelugula8418 Жыл бұрын
😍😉😉 from 'INDIA'
@shubhamkargaonkar55032 жыл бұрын
You look stunning ❤️😘
@aldunlop46222 жыл бұрын
Sleaze…
@atlantic_love2 жыл бұрын
Go away.
@shubhamkargaonkar55032 жыл бұрын
@@aldunlop4622 Just a compliment... Don't get hyper....I respect her as a teacher she is doing a great job making such videos and help me understand the concept so easily 🙌🙌
@shubhamkargaonkar55032 жыл бұрын
@@atlantic_love Just a compliment... Don't get hyper....I respect her as a teacher she is doing a great job making such videos and help me understand the concept so easily 🙌🙌 You can go away if your sentiments are hurt 🙂
@atlantic_love2 жыл бұрын
@@shubhamkargaonkar5503 Just some advice. Sand fleas are annoying, you tend to post inappropriate comments in the wrong places, and it's easy to see what you're doing. Cringe.
@boonedockjourneyman79792 жыл бұрын
Do a full length, serious video on coding interfaces (such as IDEs). What programming “shells” are out there? Advantages and •••. I say shells in quotes because that is the language we used in 1981. Not too sure what the correct words are today. Maybe look at stone age things like VI. That may give you a sense of where things started. I’m sure there are more old guys watching that can recommend things from the pre-fortran world. Fortran and Pascal led to C. Maybe BSD is a better starting point - no offense to the Pre-Fortran guys. In all seriousness, you could do a few minutes on “shells” and teach your generation where they come from.