Thank you so much for such a detailed lesson, you are a good teacher
@PortfolioCourses11 ай бұрын
I’m glad you enjoyed it! :-)
@Avionics22 жыл бұрын
I like the way you turn human language into computer language as you go. 👍👌
@PortfolioCourses2 жыл бұрын
Cool! I'm glad you enjoy the delivery/format. 🙂
@robburkett97912 жыл бұрын
Great lesson. Clear and concise. Thanks so much!
@PortfolioCourses2 жыл бұрын
You’re welcome Rob, I’m glad you found it clear and concise! :-)
@wallaceCharlieMekimo Жыл бұрын
wow! Very good eplaination
@PortfolioCourses Жыл бұрын
I’m glad you enjoyed it Wallace! :-)
@Awwe126752 жыл бұрын
I love ur channel
@PortfolioCourses2 жыл бұрын
Thank you for the kind feedback! :-)
@qcnck27762 жыл бұрын
Very nice. Thanks!
@PortfolioCourses2 жыл бұрын
You're welcome! 🙂
@amazighcoder93122 жыл бұрын
Great Lesson
@PortfolioCourses2 жыл бұрын
Thank you I'm glad that you enjoyed it! :-)
@benceszabo8825 Жыл бұрын
If I enter a letter it breaks. Is there a solution for that?
@PortfolioCourses Жыл бұрын
Great question Bence! :-) So one thing you could do is accept the input as a string instead of an int. Then, you could check to make the string contains an int using one of these methods: www.techiedelight.com/determine-if-a-string-is-numeric-in-cpp/. If the string does not contain an int, you could output an error message like "menu option must be an integer" or something. If the string does contain an int you could convert it to an int using this method: kzbin.info/www/bejne/l2WWg2iNd9hlsLM. And then you could use the int as we do in this example from there to decide which menu option code to run. Hopefully this helps! :-)
@benceszabo8825 Жыл бұрын
@@PortfolioCourses thank you
@PortfolioCourses Жыл бұрын
You’re welcome! :-)
@hannilouie2 жыл бұрын
hi sir, can you make a video about the 4 types of recursion?
@PortfolioCourses2 жыл бұрын
A video on different types of recursion is a good idea, I'll add that to my video idea list. :-)
@ManOwaRR1 Жыл бұрын
Hello Thanks for the videos , can we have a tutorial how to do a search inside a file and grab any words inside any position in a string in details , thank you so much :)
@PortfolioCourses Жыл бұрын
You're welcome Elie! :-) Thank you for the video idea too, but I'm not sure I 100% understand what you're describing. Are we searching for all words in the file? Or a certain word? Is the problem you are thinking about written down anywhere online that I could take a look at maybe?