Your first C++ GUI Game (step by step) Build Game GUI apps in C++

แชร์
ฝัง
  • เผยแพร่เมื่อ 24 มิ.ย. 2024
  • In this video, I'll teach you how to build your first C++ GUI Game app with C++.
    The video is divided into several chapters so that you can learn step by step, and I'll pin the source code in the comment so that you can use it.
    When this video gets 5k likes, I'll make another one to teach you more about game development with C++. Enjoy!
    👉Download C++Builder here: bit.ly/CppBuilderFree
    📚 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.
    ☕ If you've found my content helpful and would like to support me, you now have the option to buy me a coffee or a cookie! It's a small gesture of gratitude that means a lot to me and helps me keep creating free educational videos for you. Use the link to make a contribution: bit.ly/CodeBeauty_BuyMeACoffee
    However, please don't feel obligated to do so. I appreciate every one of you, and I will continue to share valuable content with you regardless of whether you choose to support me in this way. Thank you for being part of the Code Beauty community! ❤️😇
    Contents:
    00:00 - Explaining the game app that we'll build?
    03:23 - Creating the project
    04:00 - Creating the class and constructors
    09:04 - Generating the data
    12:34 - Creating the User Interface for the game
    17:52 - Connecting the UI and the data
    25:55 - Handling the events
    28:50 - Completing the logic of the app
    35:49 - Fixing bugs in the game
    40:05 - My tips for app improvement
    Other courses:
    C++ GUI app introduction: • Build C++ GUI apps FAS...
    Object-Oriented Programming course: bit.ly/Cpp_OOP_Playlist
    Queue data structure course: • Queue and FIFO/FCFS ex...
    Follow me on other platforms:
    Instagram 📸 - / truecodebeauty
    Twitter 🐦- / truecodebeauty
    ******SOURCE CODE IS IN THE COMMENTS******
  • วิทยาศาสตร์และเทคโนโลยี

ความคิดเห็น • 287

  • @CodeBeauty
    @CodeBeauty  2 ปีที่แล้ว +48

    📚 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.
    #include
    class Question{
    public:
    char* Text;
    char* Answer1;
    char* Answer2;
    char* Answer3;
    int CorrectAnswer;
    Question(){}
    Question(char* text, char* ans1, char* ans2, char* ans3, int correctAns){
    Text=text;
    Answer1=ans1;
    Answer2=ans2;
    Answer3=ans3;
    CorrectAnswer=correctAns;
    }
    };
    std::queue LoadQuestions(){
    Question q1=Question("Which color does not appear on the Olympic rings?","Black","Orange","Green",2);
    Question q2=Question("What is the chemical formula for Table Salt?","NaCl","NaCl2","Na2Cl",1);
    Question q3=Question("What is the longest river in the world?", "Nile","Mississippi","Amazon",1);
    std::queue questions;
    questions.push(q1);
    questions.push(q2);
    questions.push(q3);
    return questions;
    }
    std::queue questions;
    Question currentQuestion;
    int selectedAnswer;
    int points=0;
    TForm1 *Form1;
    //---------------------------------------------------------------------------
    __fastcall TForm1::TForm1(TComponent* Owner)
    : TForm(Owner)
    {
    questions=LoadQuestions();
    currentQuestion=questions.front();
    QuestionLabel->Text= currentQuestion.Text;
    Answer1RadioButton->Text= currentQuestion.Answer1;
    Answer2RadioButton->Text= currentQuestion.Answer2;
    Answer3RadioButton->Text= currentQuestion.Answer3;
    questions.pop();
    PointsLabel->Text=points;
    }
    //---------------------------------------------------------------------------
    void __fastcall TForm1::Answer1RadioButtonChange(TObject *Sender)
    {
    selectedAnswer=1;
    }
    //---------------------------------------------------------------------------
    void __fastcall TForm1::Answer2RadioButtonChange(TObject *Sender)
    {
    selectedAnswer=2;
    }
    //---------------------------------------------------------------------------
    void __fastcall TForm1::Answer3RadioButtonChange(TObject *Sender)
    {
    selectedAnswer=3;
    }
    //---------------------------------------------------------------------------
    void __fastcall TForm1::ConfirmButtonClick(TObject *Sender)
    {
    if(selectedAnswer==currentQuestion.CorrectAnswer) {
    points++;
    PointsLabel->Text=points;
    }
    if(!questions.empty()){
    currentQuestion=questions.front();
    QuestionLabel->Text= currentQuestion.Text;
    Answer1RadioButton->Text= currentQuestion.Answer1;
    Answer2RadioButton->Text= currentQuestion.Answer2;
    Answer3RadioButton->Text= currentQuestion.Answer3;
    questions.pop();
    Answer1RadioButton->IsChecked=false;
    Answer2RadioButton->IsChecked=false;
    Answer3RadioButton->IsChecked=false;
    }
    else{
    ConfirmButton->Enabled=false;
    ConfirmButton->Text="THE END";
    }
    }

    • @apoorvthecoder5458
      @apoorvthecoder5458 2 ปีที่แล้ว +4

      Sorry but is this the code for today's coding class @CodeBeauty

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +6

      @@apoorvthecoder5458 Yep 👌👌

    • @apoorvthecoder5458
      @apoorvthecoder5458 2 ปีที่แล้ว +4

      @@CodeBeauty thanks for telling and clearing my doubts

    • @mddilshadalam8561
      @mddilshadalam8561 2 ปีที่แล้ว +1

      can't you create app using vs code only ?

    • @apoorvthecoder5458
      @apoorvthecoder5458 2 ปีที่แล้ว +1

      @@mddilshadalam8561 Hi you can write C++ and C# games in VS code but it will take time because you need to have a compiler for that an extra plugin called code runner but instead, there is an amazing IDE for creating games easily Name - "Visual Studio" where this game is made in front of your eyes if you need graphical games filled with actions you need engines like unity and unreal I'll prefer "Unity" for beginners I'll be happy if your doubt is solved Thanks!

  • @CPP_malloc
    @CPP_malloc 2 ปีที่แล้ว +10

    only a few days since I found your channel and started to watch your videos, the simplicity with the completeness of your videos say a lot about you that you are a very smart programmist at the same time, good teacher... well done, and to the best.

  • @juneilquilana5159
    @juneilquilana5159 2 ปีที่แล้ว +12

    always watching to your uploads/videos Ma'am. Pro Hacker here😎

  • @linuxenthusiastgamer7189
    @linuxenthusiastgamer7189 2 ปีที่แล้ว +16

    Finally some game devlopment video with c++, I am very excited. 👍👍👍

    • @arjunsarathyp4355
      @arjunsarathyp4355 2 ปีที่แล้ว

      Minecraft bedrock edition developers : am I joke to u

  • @mexxiano
    @mexxiano 2 ปีที่แล้ว +11

    Saldina! You know! We love you! XD

  • @praveenhp3672
    @praveenhp3672 2 ปีที่แล้ว +30

    I'm 12th std and I'm studying in India.
    In my school they are teaching python with your help I'm learning c++ too!!!
    And I'm teaching c++ to my friends too!!!!!
    Thank you for your videos !!!!!!

    • @aapoopee1239
      @aapoopee1239 2 ปีที่แล้ว +2

      Prepare for jee buddy!

    • @hassanali-yi4bu
      @hassanali-yi4bu 2 ปีที่แล้ว +2

      @@aapoopee1239 normie...let people break out of that jee mindset buddy...only then things will change...someone has to start

  • @johncipolla8335
    @johncipolla8335 2 ปีที่แล้ว +28

    I am an old school programmer from punch card days. My first language was cobol. I have always wanted to learn C++ C++ was saved for comp sci majors. i was a business programming major so. This reminds me a lot about Pascal.

    • @colinmaharaj50
      @colinmaharaj50 2 ปีที่แล้ว +4

      John, glad to know you are alive and well. I started on my own in 1990 with pascal then C and C++. Took me a few years to get good, but its worth the effort.

  • @nv9usb381
    @nv9usb381 2 ปีที่แล้ว +14

    Amazing! You are my favorite teacher on TH-cam#

  • @immadwolf4459
    @immadwolf4459 2 ปีที่แล้ว +18

    Can't wait for another practical tutorial, have a lot sources for theory but for watching it how it works practically this is the only channel i found till now.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +2

      I'm happy to help ☺️🥰

    • @MrEnsiferum77
      @MrEnsiferum77 2 ปีที่แล้ว +2

      lol not, u are for the girl here

    • @deadcat6085
      @deadcat6085 2 ปีที่แล้ว +1

      @@MrEnsiferum77 ha

  • @l.p.1967
    @l.p.1967 2 ปีที่แล้ว +14

    I love your videos, you are excellent teacher! 😃😃

  • @papiermuecke7626
    @papiermuecke7626 2 ปีที่แล้ว +2

    Wow Saldina thank you very much for that GUI - Game Tutorial! I am using QT as my IDE, so some functions and classes are a little bit different to invoke. So i just looked in the internet how to invoke buttons and change the text of the radio buttons and so on. And it worked! I was never able to code a program with QT before! I am very glad that you created that video.
    I wish you a very nice vacation!
    Greetings :-)

  • @chandakangwa1917
    @chandakangwa1917 2 ปีที่แล้ว

    the most practical channel i've encountered. No words are enough to express my gratitude

  • @hilgicamala2520
    @hilgicamala2520 2 ปีที่แล้ว +15

    Exactly what I need, thanks!

  • @mohrbh2918
    @mohrbh2918 2 ปีที่แล้ว +10

    The best i need more video like this so please make more
    And thank you 🧡🧡

  • @ronnierana4404
    @ronnierana4404 2 ปีที่แล้ว +16

    I actually wanted you to make a video on this. 🥺 Thanks. 🥺❤️

  • @thembamshishi5874
    @thembamshishi5874 2 ปีที่แล้ว +8

    We marking the Register live 🔴

  • @khavovan8201
    @khavovan8201 2 ปีที่แล้ว +1

    I really like your videos. They're so easy to understand because your accent is so clear. I'm non-native but I understand all videos. I hope you can make more videos about C++ and other language!!!

  • @abelashenafi6291
    @abelashenafi6291 11 หลายเดือนก่อน

    I first knew about your channel yesterday to see how to use multithreading in the Visual Studio IDE, but I really like your representation and all so I became your huge fan and follower. You have interesting topics. Keep them coming

  • @neepunpatil5201
    @neepunpatil5201 2 ปีที่แล้ว +5

    Waiting!!!

  • @mrcrypto.1064
    @mrcrypto.1064 2 ปีที่แล้ว

    Love the channel. When i sell my first dapp all buy you a coffee shop. Thanks for all the help. Iv passed allot of my road blocks thanks to your channel.

  • @demetrischristodoulou8487
    @demetrischristodoulou8487 2 ปีที่แล้ว

    Thanks, Excellent tutorial! The way you explaining things is very nice, so clear and simple!

  • @guillermorodriguez3583
    @guillermorodriguez3583 2 ปีที่แล้ว +10

    Great as always!

  • @The.gm63
    @The.gm63 2 ปีที่แล้ว +10

    that was a great content. kudos to you!

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      Thank you! 🤗🥰🥰

  • @codervai
    @codervai 2 ปีที่แล้ว +10

    Thanks for this tutorial

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว

      You're welcome ☺️🥰

  • @AdityaSingh-ui4tr
    @AdityaSingh-ui4tr 2 ปีที่แล้ว +11

    Few seconds to go! 🔥

  • @abc12-
    @abc12- 2 ปีที่แล้ว

    i feel very well when you upload videos on c++,many people tells that c++ does not survive longer but feel confident when you upload videos because i am a c++ programmer

  • @skypuff
    @skypuff 2 ปีที่แล้ว +2

    Can't believe I found you in my embarcadero emails.
    You're amazing, thank you for the great video.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      Thank you 🥰🤗

  • @amirmatrix9134
    @amirmatrix9134 2 ปีที่แล้ว

    i cant describe how much i love u
    u r a legendary human I've learned everything i know from ur videos thank u from the heart
    keep up the legendary tutorials ❤️

  • @bizaymandalbzax5904
    @bizaymandalbzax5904 2 ปีที่แล้ว

    congratulations for 100k many more to go cheers

  • @kelvinlicky7809
    @kelvinlicky7809 2 ปีที่แล้ว +10

    Always my favor channep

  • @belaidabdelhadi
    @belaidabdelhadi 2 ปีที่แล้ว +1

    Hey Saldina you're really cool , thank you for all of the awesome informative tutorials it helps a lot especially the way you explain things is really awesome .
    I may request something like Qt and C++ it's really awesome and Cross platform .

  • @quvonchbekquvonch4385
    @quvonchbekquvonch4385 6 หลายเดือนก่อน +1

    Thank you Saldina. I watched your video and learned many❤

  • @FiestaIQ
    @FiestaIQ 2 ปีที่แล้ว +12

    Best coder

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      Thank you! ❤️❤️

  • @alfredochicasvalencia610
    @alfredochicasvalencia610 2 ปีที่แล้ว

    Woo, I'm subscribed to the channel, I love it, it has helped me a lot in my engineering tasks, thanks Saldina ☺️, sorry for my English, i need to practice moore, I'm not American

  • @mostafafadel2735
    @mostafafadel2735 2 ปีที่แล้ว

    easy beautiful and simple that's saldina thanks a lot for your efforts keep going you're doing great things here

  • @aahnafiya
    @aahnafiya 2 ปีที่แล้ว +10

    You are doing great job

  • @stormbreaker9913
    @stormbreaker9913 2 ปีที่แล้ว +1

    Very Happy to get this channel🤩🤩

  • @aaronm2870
    @aaronm2870 2 ปีที่แล้ว

    I love coding and beautys. When a beauty is teaching coding, I love the most:)

  • @ylmazyoru6189
    @ylmazyoru6189 2 ปีที่แล้ว

    Very simple and clear, thank you for this video

  • @builder6189
    @builder6189 2 ปีที่แล้ว +8

    We would love if you upload more videos quickly..!

  • @plumberman19
    @plumberman19 2 ปีที่แล้ว

    You are an incredible teacher! AND you have inspired me to go back to school for my software engineering degree, I should have gotten long ago. So, I think I'll buy you a cinnamon soy latte XD Thank YOU!!! Please keep making AWESOME content!

  • @julianmiglio8288
    @julianmiglio8288 2 ปีที่แล้ว

    Hi Saldina, thank you very much for the videos, you explain very well.

  • @Victor-lx4dk
    @Victor-lx4dk 2 ปีที่แล้ว +1

    Hi Saldina. Thanks a lot for your very nice work, your explanations are very clear. Have you consider to make a video for talking about UML languaje? I think it would be useful in planning a project sistematically.
    The another thing is I think is the next. I am a mexican guy from Mexico City, and I think it would be a good idea to add spanish subtitles to your videos, but I don't know how to do that. Maybe the tools are at hand, but I don't know the issue related with permissions.

  • @joilsonrodrigues9718
    @joilsonrodrigues9718 2 ปีที่แล้ว +1

    thanks for the videos, you make c++ a much simpler language than it appears to be.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว

      I can identify with someone who is learning C++, because I made the same mistakes a while back and had a really hard time to overcome them, so I remember the struggle too well 🤗🤗

  • @ahmadmaatouk9175
    @ahmadmaatouk9175 2 ปีที่แล้ว

    Thank you, you inspired me how i start in programming using C++.

  • @jdkingsley6543
    @jdkingsley6543 2 ปีที่แล้ว +1

    I should have told you, thanks for introducing me to embarcadero, I was using the old dev c ++ version and this one is so much better.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      You're welcome, I'm happy to help ☺️🥰

  • @bulutkorkmaz8640
    @bulutkorkmaz8640 2 ปีที่แล้ว +1

    Abla be çok güzel anlatıyorsun helal olsuna yapiyorsun bu işi :)

  • @alvintey6432
    @alvintey6432 2 ปีที่แล้ว +1

    thanks for uploading gui training video. please enjoy your holiday and have fun.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว

      Thank you! I will 🥰🥰

  • @moularaoul643
    @moularaoul643 2 ปีที่แล้ว +7

    As usual, thank you for this wonderful work.

  • @paraschivdrobota8946
    @paraschivdrobota8946 2 ปีที่แล้ว

    Hi,thank you for making this videos ,really helpful stfuff

  • @monstergamingiraq7927
    @monstergamingiraq7927 2 ปีที่แล้ว +1

    Thanks a lot i am happy when i see your videos

  • @gunratnamore4250
    @gunratnamore4250 2 ปีที่แล้ว

    Hey saldina your videos are so informative... please try to make videos on interview questions..I know that you did one of cards...but that was basic... And thanks for refreshing my c++ (coding since 2019)

  • @danielaguirre5078
    @danielaguirre5078 2 ปีที่แล้ว

    I love this Channel, im learning C++ from scratch, and this courses are awesome👌👌.

  • @H3ADT
    @H3ADT 2 ปีที่แล้ว +1

    Thank ever so much, I don't speak English well but your accent is so clear for me.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      Happy to hear that. I try to make it available and understandable to everyone 🤗🤗🥰

  • @namrataneupane3239
    @namrataneupane3239 ปีที่แล้ว

    Thank you so much for your work .... It was a big help ..... Now I need to learn how to port GUI into mobile phone

  • @JohnWickXD
    @JohnWickXD 2 ปีที่แล้ว

    Awesome content🙌
    Could you please upload more videos on Data Structures?👀

  • @rafiullahafridi11
    @rafiullahafridi11 2 ปีที่แล้ว

    Love u dear ur teaching method is perfect

  • @pkentertainment2143
    @pkentertainment2143 2 ปีที่แล้ว +12

    I love you saldina 💘

    • @samsungsarsamsungsar7792
      @samsungsarsamsungsar7792 2 ปีที่แล้ว +1

      Please teach cross platform softwares. Cpp builder is not for linux guys! But *nix OSes do really important. wxWidgets
      Is a good choice

  • @hectorrosa470
    @hectorrosa470 2 ปีที่แล้ว +1

    I heart you keep going awesome. 😘👍

  • @elsayedshehata7404
    @elsayedshehata7404 2 ปีที่แล้ว +1

    Welcome to Egypt ❤️❤️
    I am Egyptian and fall in love with your content 😂❤️

  • @duyphamthanh3333
    @duyphamthanh3333 2 ปีที่แล้ว

    I love your video. Thanks 😘

  • @danny12345
    @danny12345 2 ปีที่แล้ว

    thank you very much for that GUI - Game Tutorial

  • @ImParzelli
    @ImParzelli 2 ปีที่แล้ว +1

    Okay just got done downloading c++ now I'm ready to make games lol Got my coffee, I know very little. But like they say! You only need to know what your doing if your applying for a job. 👍

  • @villeurbanne
    @villeurbanne 2 ปีที่แล้ว

    I went to your coffee shop and I appreciated my coffee without sugar there. Thanks

  • @CreadorDeBugs
    @CreadorDeBugs 2 ปีที่แล้ว

    im not a english speaker but i can understand you perfectly :) thank you and congratulations

  • @Ghisisan_
    @Ghisisan_ 2 ปีที่แล้ว +1

    First liked, then watched. Not dissapointed! 😊

  • @shefalibhattacharya3434
    @shefalibhattacharya3434 2 ปีที่แล้ว +3

    hey, saldina! i came from your oops tutorial and i must say how flawlessly you have taught us the concepts. my practical knowledge is strengthened! thanks a lot! you teach really well. love from india.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      🇮🇳🙏💙

  • @ritik3514
    @ritik3514 2 ปีที่แล้ว +1

    What a great tutorial thank u so much ❤️

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว

      You're welcome! ☺️🥰

  • @alvinfreeman8838
    @alvinfreeman8838 2 ปีที่แล้ว

    I know programming but still I love to watch this video.

  • @locked01
    @locked01 2 ปีที่แล้ว

    Oh my God! I would "code" with you all day long!

  • @mikelong3444
    @mikelong3444 2 ปีที่แล้ว

    Nice! Great tutorial.

  • @dipensawant2575
    @dipensawant2575 2 ปีที่แล้ว +1

    Heyy
    This one's for all the viewer.
    This lady got some bomb a** teaching skills. We being audience to her content should appreciate her by hitting that "LIKE BUTTON".
    It take nothing to Hit Like.
    Also Saldina Your courses are epic. I've been trying to do same course from other platforms since months but couldn't get my concepts clear. Just hopped inn to your channel and TBH you just made my path clear. Thank you so much :)

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      Thank you so much for the support. I appreciate it a lot! 🙏💙💙

  • @devmau1716
    @devmau1716 2 ปีที่แล้ว

    my english is terrible, and even so I could understand everything! you are to be congratulated!

  • @aurangzebkhan4027
    @aurangzebkhan4027 2 ปีที่แล้ว

    Really a good explanation... So I can't restrained yourself from thumbs up button... Was amazing video.. please also make or upload a video of API and how it works... I will be waiting for your response......

  • @israelayobamiji1652
    @israelayobamiji1652 2 ปีที่แล้ว +1

    Hello Saldina, I've been following and enjoying your C++ videos from Nigeria. C++ builder license is quite expensive being a student in Nigeria.
    Please can you make C++ GUI application in Visual Studio 2022? Most of the GUI application videos for visual studio C++ on TH-cam are mostly in version 2019 and I don't understand the explanation of those that make the C++ GUI videos with 2022 version. Your explanations are always top notch and always detailed with practical examples. I'll be glad if you can make videos on GUI C++ applications in Visual Studio 2022.
    Thank you

  • @deadchannel7637
    @deadchannel7637 2 ปีที่แล้ว +11

    Interesting ❤️❤️❤️❤️

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      ❤️❤️❤️

  • @dieptranngocminh8886
    @dieptranngocminh8886 2 ปีที่แล้ว

    Can you make more videos about data structures and algorithms. Thank you

  • @souravshit6593
    @souravshit6593 2 ปีที่แล้ว

    Thanks Saldina❤️

  • @ChristianRodriguez-tm3jg
    @ChristianRodriguez-tm3jg ปีที่แล้ว +1

    I'd like to buy you as many as you deserve, yet i am jobless... I have no money at the time... But i am watching your videos. They are awesome...!

    • @CodeBeauty
      @CodeBeauty  ปีที่แล้ว

      The intention is what matters 🤗
      I wish you a lot of success and hope that you'll get a job you like soon 😊

  • @zannatulferdousbristy235
    @zannatulferdousbristy235 2 ปีที่แล้ว

    It really helps.
    :)

  • @d_113d
    @d_113d 2 ปีที่แล้ว +11

    ❤️❤️❤️

  • @aliniaz6448
    @aliniaz6448 2 ปีที่แล้ว +1

    This channel is also good for english learning

  • @militerupgrade2540
    @militerupgrade2540 2 ปีที่แล้ว

    please upload another video about coding your explain is cool and iam easy understand it

  • @vijaymusics7685
    @vijaymusics7685 2 ปีที่แล้ว +9

    Sister love from tamilnadu

  • @abdellatif.x8127
    @abdellatif.x8127 2 ปีที่แล้ว

    I hope you keep making tutorials about gui apps with rad studio

  • @lonelywalker5838
    @lonelywalker5838 2 ปีที่แล้ว

    Thank you for your lesson !
    Can you please tell what library or framework used for creating this application.
    I heard about bunch of them like QT, wxwingets and other. Interesting what the name of this one and what features it provides ? On what operating systems this app can work ?

  • @nikitasch9775
    @nikitasch9775 2 ปีที่แล้ว +1

    Hey , i have found you recently and dont know if you made a video about vectors but if you didnt please do, and also the diference beteween Arrays and vectors

  • @oliviamacy8000
    @oliviamacy8000 ปีที่แล้ว

    Thank you so much life saver

  • @sudani1993
    @sudani1993 2 ปีที่แล้ว

    Please we need more education of #GUI using #c++ ,and Thanks for this great video

  • @7_facts906
    @7_facts906 2 ปีที่แล้ว +2

    Please continue data structures and algorithms course and if possible resume with time complexity . Thank you and lots of love from india..

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว

      Lots of love for India! 🇮🇳🧡🧡

  • @swapnilkadav2373
    @swapnilkadav2373 2 ปีที่แล้ว +3

    Pls Make playlist about STL in C++

  • @rahatalmas2054
    @rahatalmas2054 2 ปีที่แล้ว

    please make more videos and tutorial about gui apps ..

  • @adityamohan5293
    @adityamohan5293 2 ปีที่แล้ว

    Amazing!! make more such videos
    how can we add explanation to the correct answer in the window?

  • @elprofesor6156
    @elprofesor6156 2 ปีที่แล้ว +3

    I'll be waiting for game development in C++. It will going to be great. Love your content❤️

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว +1

      ❤️

    • @elprofesor6156
      @elprofesor6156 2 ปีที่แล้ว

      @@CodeBeauty Dear please make video on How to become game developer and get job in big gaming companies like Rockstar, Ubisoft, etc. Means a road map to become a game developer.

  • @nassirmreyoud4415
    @nassirmreyoud4415 2 ปีที่แล้ว

    Somebody's gotta say it: teaching brilliance aside, Saldina's implementation of the "Hot" algorithm is a work of art...

  • @UPSC_AIR1
    @UPSC_AIR1 2 ปีที่แล้ว +1

    Mam Its a humble request to u to make videos on DSA plz

  • @nataliosantiagogarcia1093
    @nataliosantiagogarcia1093 ปีที่แล้ว

    Thanks!

  • @Jonny-op3wr
    @Jonny-op3wr ปีที่แล้ว

    Question do you prefer not to use the initializer list or are there reasons for using it or not?

  • @hectorl.4744
    @hectorl.4744 2 ปีที่แล้ว

    Egypt...wow....What a trip ¡¡¡
    Have nice vacations.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว

      Thanks so much Hector! I hope so ☺️😘😘

    • @mostafafadel2735
      @mostafafadel2735 2 ปีที่แล้ว

      ​@@CodeBeauty I'm from Egypt How lucky is me 😂😂🥰

  • @sergey_zatsepin
    @sergey_zatsepin 2 ปีที่แล้ว +1

    Maybe you will make video about your own story? I mean, how you became programmer, how you learnt, where you worked and etc.

    • @CodeBeauty
      @CodeBeauty  2 ปีที่แล้ว

      I was planning to do a QnA when the channel reaches 100k, so that is an interesting question that I can answer ☺️☺️😃