Тёмный
CodeBeauty
CodeBeauty
CodeBeauty
Подписаться
Hi everyone! My name is Saldina Nurak. I'm a software engineer with 10 years of experience. I started this channel as a way of giving my contribution, sharing the knowledge, making programming tutorials, answering questions related to this industry, and making fun developer life videos.

These videos are intended to help you to get a job, learn for your exams, learn to program for fun, and answer your questions about software engineering.

Write in the comments what kind of videos and tutorials would you like to see on my channel in the future, and give a thumbs up to the existing ones that you like.

Enjoy!

✉️ If you'd like to sponsor a video and for other business inquiries contact me at:
truecodebeauty@gmail.com
Комментарии
@user-bp6tl4nm9y
@user-bp6tl4nm9y 2 часа назад
Thanks madam Saldina iam really happy and improving in my IT Program thanks so much you are a very good lecturer.
@muhmedgamal5841
@muhmedgamal5841 5 часов назад
Gooooood😊
@Praveen_C11
@Praveen_C11 18 часов назад
9:48
@Praveen_C11
@Praveen_C11 21 час назад
10:30
@BrandyTunmire
@BrandyTunmire 21 час назад
Excellent explanation as always
@gideonspace8807
@gideonspace8807 22 часа назад
the machine code can be understopod using hexadecimal decodes.
@NaveenKumar-oz6wp
@NaveenKumar-oz6wp День назад
Superb explaination, thanks for much more clarification in a specific manner
@kulinterests
@kulinterests День назад
@saldina can I use constructors in a structure? For example: struct RU-vidChannel { string Name; int Subscribers; RU-vidChannel(string name, int subscribers) { Name = name; Subscribers = subscribers; } } . . // other codes; . . int main( ) { RU-vidChannel yt("Frank", 10); Struct_Name ytInfo; ytInfo.Yt = yt; . . . } I tried it for void it worked but didn't work for constructors, do you know why?
@ronniesaurav17
@ronniesaurav17 День назад
#include <iostream> #include <fstream> #include <string> using namespace std; void writeStoryToFile(const string& story, const string& filename) { ofstream outFile(filename); if (!outFile) { cerr << "Error opening file for writing!" << endl; return; } for (char ch : story) { outFile << int(ch) << ' '; } outFile.close(); } string readStoryFromFile(const string& filename) { ifstream inFile(filename); if (!inFile) { cerr << "Error opening file for reading!" << endl; return ""; } string story; int asciiCode; while (inFile >> asciiCode) { story += char(asciiCode); } inFile.close(); return story; } int main() { string story = "A simple story. "; string filename = "story.txt"; writeStoryToFile(story, filename); string retrievedStory = readStoryFromFile(filename); cout << "Retrieved Story: " << retrievedStory << endl; return 0; }
@ellysismine
@ellysismine День назад
i love carry you by ruelle
@ellysismine
@ellysismine День назад
thank you sooo much
@damianeesa
@damianeesa День назад
I love ur videos!! It'll really help me with my finals🌸
@L0G0master
@L0G0master 2 дня назад
This is my first ever english lecture video understanding with out subtitles 😅😂..... thank u mam❤
@jimpapay2895
@jimpapay2895 2 дня назад
Hello CodeBeauty, I'm having a really hard time with callback functions. Can you do a video on just the callbacks. And make it for a child? Thank-you. Jim
@FauziyaSuleimanzumo
@FauziyaSuleimanzumo 2 дня назад
But can we use the variable float in c## since double is the bigger memory decimal value of float?
@anishbhat06
@anishbhat06 3 дня назад
I am currently in my first year cs undergrad will this course be useful?......because this focuses on a specific domain and will it help in On-campus placements??
@anishbhat06
@anishbhat06 3 дня назад
Hey ! I have a question......Do we learn Android development or backend development in this course??
@MrBensella
@MrBensella 3 дня назад
ammm , the video loop X 2 is deliberate?
@ahmedfawzy728
@ahmedfawzy728 3 дня назад
brilliant tutorial
@billcarruth8122
@billcarruth8122 3 дня назад
I clicked for C sharp, but all I see is fine.
@user-ld1fo5mh9b
@user-ld1fo5mh9b 3 дня назад
Я не понимаю английского я учил немецкий да и немецкий язык так себе понимаю . А вы как будто на из USA
@abhayjhariya1089
@abhayjhariya1089 3 дня назад
is this a beauty channel, is she trying to attract students by their beauty in thumbnail ?
@sfs-lyder8560
@sfs-lyder8560 3 дня назад
sometimes you need motivation to learn.
@skykid1075
@skykid1075 3 дня назад
i miss you so much ! i wish you best and joy ! long hug and kiss
@MrSevenup14
@MrSevenup14 3 дня назад
those strings are holding for their dear lives
@soumyadeepsarkar3808
@soumyadeepsarkar3808 3 дня назад
Why ? Strings in C# are easy to use ?
@ChrisCarlos64
@ChrisCarlos64 3 дня назад
@@soumyadeepsarkar3808 He wasn't referring to the C# strings.
@vaibhavjoshi2533
@vaibhavjoshi2533 3 дня назад
IM OVERLY EXCITED, NEVER KNEW C# COULD BE THIS MUCH FUN
@saahas760
@saahas760 3 дня назад
THE BEST TEACHER
@34sisantachhatoi34
@34sisantachhatoi34 3 дня назад
You look taller
@igiriwalter6546
@igiriwalter6546 3 дня назад
We like your content teach us Python also
@MajeedKhan-ix3mj
@MajeedKhan-ix3mj 3 дня назад
Thank You, One of the best c++ tutorial video I've ever seen on RU-vid
@hamidahadafmand-mw8fl
@hamidahadafmand-mw8fl 3 дня назад
Hey, I wish you were my onsight teacher in class
@YazeedSeraj
@YazeedSeraj 4 дня назад
15:06 Refactoring means improving the internal structure and readability of a function without changing its external behavior or functionality
@handsoncoding7693
@handsoncoding7693 4 дня назад
thanks a lot CodeBeauty. I am BCA student at manipal university jaipur, I struggke understanding this concept from other tutorial, but yours is super easy to grasp. thanks again
@broadbandmax
@broadbandmax 4 дня назад
Not sure if already asked, how to does the exception work when propogating through a call stack?
@seanspencer1818
@seanspencer1818 5 дней назад
I'm a little confused, why does insertAtFront() and insertAtTheEnd() takes a double pointer while the insertAfter() takes a single pointer? Really appreciate if anyone can explain this to me. Thank you
@juanandrade1615
@juanandrade1615 5 дней назад
Thanks a lot for this course, You explain very well step by step, I am enjoying it very much. 🤗✨
@duttybwoy556
@duttybwoy556 5 дней назад
😂😂😂 definitely confirmed you're a badass dev lol ...
@CodeBeauty
@CodeBeauty 5 дней назад
😁😁🥰
@duttybwoy556
@duttybwoy556 5 дней назад
So a Senior dev is a badasssssss gangstaaa , like you , right??? Lol... Yes ma'am.
@ooss748
@ooss748 5 дней назад
What about mac
@barcinnicrab9562
@barcinnicrab9562 5 дней назад
Very easy and pleasant tutorial to follow
@CodeBeauty
@CodeBeauty 5 дней назад
🥰
@umerfayyaz2554
@umerfayyaz2554 5 дней назад
you dropped 👑
@CodeBeauty
@CodeBeauty 5 дней назад
❤️
@michaeltorres1263
@michaeltorres1263 5 дней назад
BUT
@muhammmadalimalik7971
@muhammmadalimalik7971 6 дней назад
I will learn programming because I need to grow
@CodeBeauty
@CodeBeauty 6 дней назад
🚀✨️ welcome, you're in the right place, and if you want to learn to build real apps, and start a career, now I also have practical programming course where you can get all that you need on one place and speed up your progress. You're welcomed to join here: www.codebeautyacademy.com
@corneillembay8893
@corneillembay8893 6 дней назад
I CANNOT WAIT TO WATCH IT THANKS
@CodeBeauty
@CodeBeauty 5 дней назад
🥰🥰
@hansmidam8894
@hansmidam8894 6 дней назад
I want to gain skills and I love programming too
@CodeBeauty
@CodeBeauty 6 дней назад
🚀✨️ You're in the right place, and if you want to learn to build real apps, and start a career, now I also have practical programming course where you can get all that you need on one place and speed up your progress. You're welcomed to join here: www.codebeautyacademy.com
@hansmidam8894
@hansmidam8894 6 дней назад
Thanks our sister
@jamieMcSorley-c4i
@jamieMcSorley-c4i 6 дней назад
I noticed if I enter a letter or a symbol, the program immediately runs through the code asking to enter the pin, but doesn't allow a pin to be entered, then the program defaults to "Blocked". Is there a way to debug this? I was thinking of using another if statement
@user-kh8zj2ol2l
@user-kh8zj2ol2l 6 дней назад
This leson is very usefull thanks very muthc
@ahmetyavuz769
@ahmetyavuz769 6 дней назад
thank you for your video 😊
@jamieMcSorley-c4i
@jamieMcSorley-c4i 6 дней назад
I noticed if I enter a letter or a symbol, the program immediately runs through the code asking to enter the pin, but doesn't allow a pin to be entered, then the program defaults to "Blocked". Is there a way to debug this? I was thinking of using another if statement
@ahmetyavuz769
@ahmetyavuz769 6 дней назад
thank you for your video 😊
@ahmetyavuz769
@ahmetyavuz769 6 дней назад
thank you for your video 😊
@shahabsamkan4027
@shahabsamkan4027 7 дней назад
Imagine taking lessons from a woman .. smh
@CodeBeauty
@CodeBeauty 7 дней назад
Women can teach you a lot 😁
@shahabsamkan4027
@shahabsamkan4027 7 дней назад
@@CodeBeauty you think so? for every female coder there's like 10.000 male coders ... VERY disproportionate wouldn't say so? 1/10000. the probability of that one female being superior to most male coders is abysmally low. so no, I don't think women have much to offer in terms of educational content. :) but hey you're pretty so you'll get more views than all those males combined. that's what you have going for you :)