- Видео 44
- Просмотров 944 433
BeginnerPrograms
США
Добавлен 26 янв 2014
In this channel you will find examples of simple programs you can make using c++. I cover mostly introductory topics and show you examples of how to apply it.
I hope you find my channel helpful.
If you wish to donate. Thank you paypal.me/beginnerprogramsyt
Email: beginnerprogramsyt@gmail.com
If you have a introductory program (c++ or Java or other) that you want me to do, send me an email with ALL the details and I will get back to you as soon as possible if I can do it or not. $30
I hope you find my channel helpful.
If you wish to donate. Thank you paypal.me/beginnerprogramsyt
Email: beginnerprogramsyt@gmail.com
If you have a introductory program (c++ or Java or other) that you want me to do, send me an email with ALL the details and I will get back to you as soon as possible if I can do it or not. $30
CodingPhase Review
Referral link: uhded.com/codingphase
Written review: Link here: uhded.com/codingphase-review
Watch my review of CodingPhase 2021.
CodingPhase is a platform to learn how to code and make money online.
I have the lifetime membership and have been using CodingPhase for close to 2 years now. It has been completely worth it, and I have learned so much from the platform.
In this video, I cover if the courses on CodingPhase are any good, how the teaching style is like, why I like CodingPhase, and who CodingPhase is not for.
Overall, if you are learning to code and want to get a job, you won't go wrong with a CodingPhase membership.
Feel free to ask any questions.
Written review: Link here: uhded.com/codingphase-review
Watch my review of CodingPhase 2021.
CodingPhase is a platform to learn how to code and make money online.
I have the lifetime membership and have been using CodingPhase for close to 2 years now. It has been completely worth it, and I have learned so much from the platform.
In this video, I cover if the courses on CodingPhase are any good, how the teaching style is like, why I like CodingPhase, and who CodingPhase is not for.
Overall, if you are learning to code and want to get a job, you won't go wrong with a CodingPhase membership.
Feel free to ask any questions.
Просмотров: 1 694
Видео
How to have multiple pages in Carrd | Control Elements Tutorial
Просмотров 65 тыс.4 года назад
Learn how to add a new page in Carrd. Also, learn how to have a footer, header, and scroll Point using the Carrd Control Elements. Try Carrd: try.carrd.co/codigoed (Affiliate link) 0:00 Introduction 0:54 New page with Carrd 4:36 Header and Footer in Carrd 5:13 Scroll Points in Carrd 6:16 Final Recap Best Resource to learn web development (affiliate link): uhded.com/codingphase
Make a Carrd website from scratch - Without a Template | Landing page Tutorial
Просмотров 1,3 тыс.4 года назад
Learn how to make a Carrd website from scratch without using a template. You will be able to make a copy of any website with Carrd. Resources Mentioned in the Video (This is an affiliate link. If you use it, I'll receive a commission at no extra cost to you) Carrd: try.carrd.co/codigoed Best Resource to learn web development (affiliate link) uhded.com/codingphase
How to Link Custom Domain Name to Carrd Website
Просмотров 22 тыс.4 года назад
Learn how to Link your custom Domain Name to your Carrd website. Blog Post: uhded.com/custom-domain-carrd Resources Mentioned in the Video (These are affiliate links. If you use one of them, I'll receive a commission at no extra cost to you) Carrd: try.carrd.co/codigoed Namecheap: namecheap.pxf.io/zJ10W Learn to code: uhded.com/codingphase
C++ Program : Equilateral Triangle using recursion
Просмотров 4,9 тыс.8 лет назад
In this video I will show you how to make an Equilateral triangle with stars using recursion. Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ program : Right Triangle using recursion
Просмотров 3,5 тыс.8 лет назад
In this video I will show you how to make a right triangle with asterisks using recursion Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ Program: Figure out the longest and shortest word in the input
Просмотров 18 тыс.9 лет назад
In this video i show you how to make a program that reports the longest and the shortest string in the input. Also reports the length of the shortest and longest word by using .size() Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ Program: Counts how many times each word appears in the input
Просмотров 44 тыс.9 лет назад
In this video i show you how to make a program that counts how many times each distinct word appears in the input given by the user. I use sort function to sort the input by dictionary order, and i store all the words in a vector. Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ program : Quadratic formula
Просмотров 68 тыс.9 лет назад
In this video i show you how to solve a quadratic equation using the quadratic formula. Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ program: Draw a triangle using stars
Просмотров 12 тыс.9 лет назад
In this program i show you how to draw a triangle using nested while loops. The triangle is drawn using stars ( * ) . Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ : split strings into tokens using strtok
Просмотров 77 тыс.9 лет назад
In this video i show you how to use strtok from c string library. I use strtok to parse a char array string and separate it using a period as a delimiter (token) Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ : Function to convert lower case string to upper case
Просмотров 100 тыс.9 лет назад
In this program i will show you how to convert a lower case string into an upper case string using toupper Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ recursion: Recursive function that multiplies digits in a number
Просмотров 2249 лет назад
In this video i will show you how to make a recursive function that multiplies the digits in a number. For example if you enter 232 the answer is 12 because 2 x 3 x 2 = 12 Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ program: Recursion: Recursive function that finds prime factorization of a number
Просмотров 9 тыс.9 лет назад
In this video i will teach you how to make a recursive function that finds the prime factors of a number. Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ diamond shape using nested for loops
Просмотров 25 тыс.9 лет назад
In this video i will show you how to make a diamond shape made out of stars * (asterisks) using nested for loops Best Resource to learn web development (affiliate link) uhded.com/codingphase
C++ letter K with stars using nested for loops
Просмотров 4,2 тыс.9 лет назад
C letter K with stars using nested for loops
C++ : Print char array in reverse using recursion
Просмотров 17 тыс.9 лет назад
C : Print char array in reverse using recursion
C++ program: count the number of vowels in a string
Просмотров 38 тыс.9 лет назад
C program: count the number of vowels in a string
C++ program : Check if a string is a palindrome
Просмотров 12 тыс.9 лет назад
C program : Check if a string is a palindrome
C++ program- Counts number of times a specific letter appears in a string
Просмотров 65 тыс.10 лет назад
C program- Counts number of times a specific letter appears in a string
C++ Adding the values of 2 static arrays
Просмотров 4,4 тыс.10 лет назад
C Adding the values of 2 static arrays
Values of x for which series converges and the sum of the series
Просмотров 36 тыс.10 лет назад
Values of x for which series converges and the sum of the series
Geometric series converge or diverge
Просмотров 1,4 тыс.10 лет назад
Geometric series converge or diverge
C++ Program - Print right Triangle using For Loops
Просмотров 15 тыс.10 лет назад
C Program - Print right Triangle using For Loops
Simple and to the point. Thanks! I tried reading the instructions on the Carrd and NameCheap websites, but they were super confusing. I'm more of a visual person anyways :) For me, it literally took 10 mins for the new custom domain to go live 😄
Do we have to remove the original records before imputing the new records from carrd onto namecheap
help each time i adjust the size of an image on a section, the image on the other sections also changes
THIS IS SUCH A GOOD VIDEO
you earned the like o7
it is extremelly helpful !!! THanks a lot🦄
thank you!!
Thank you! I appreciate your help.
3 years old video and still works like fire, godaddy charge double for the same domain I bought thanks to you. Thank you, this is what I call, an helpful and educational video 😅
thank you so much sir!
You are a life saver <3 <3 <3 I have been searching what to do and feared seeing as the video is 3 years old it might be outdated already, but god bless no xD It worked haha <3 <3 You are the hero the internet needs haha
is it paid?? how much is the cost?
Thanks
Great instructions, works for me the first time round. thanks for the video.
Thank you!
2 years after ur tutorial ur still helping people, always thought carrd is just for one pagers without header or footer!! King
WHOAAHH this is sooo helpfuul!!
Thank you so much !!! ♥
I did the same, and I published my website but it say :"unsecured because no " what do I do?
Hi please help, i did eveything as directed. Everything is good besides it is not showing it is secured and instead is has red caution letters of not being fully secured. How can i make the connection secure?
I don't know why, but every time I try to change the url in my button to jump down to it, it always crashes or can't be found.
thank you!! ☺
thanks so much! this was super easy to understand!
very helpful ty! :D
Thanks helped a lot:)
Thank you so much
Thank so much
Suppose i want to make huge size of Alphabet ??? What program would be that
Hey man, if i already have an existing website and would like to overwrite it with a landingpage from carrd, is there any additonal steps i would have to make? My domains provider is Namecheap. Thanks!
Dont work
use ctrl+D instead of ctrl+Z. it works
Thanks
Modified it to include dollars and using $2.68 for the amount. The most efficient for this amount is 2 dollars, 2 quarters, 1 dime, 1 nickel, and 3 pennies. While this program mostly matches this combination, it is telling me to use 10 quarters. Any thoughts?
Rly thank you! hopeful, that what i rly wanted, thank you for help! ^^
Thank you for this video. Can you get a blog on Carrd?
No. Because even tho you can have different “pages” it’s all technically the same page. So if you have many blog posts your site will slow down. Also it wouldn’t be good for seo
Incredible is an understatement. Thank you so much!
Thank you
thank a lot
Can someone help me about switch statement i wanna put a . next to a number that i put as case cuz its 22"."91 ft and when i put the . it wont run
How would you do this with a map?
thanks a lot, you saved my day 🙏
When the output is a complex root, it shows 'nan'. What should be the solution for that?
because the roots are complex and different
Much easier tutorial compared to others. Thanks!
Awesome, thanks a million!!!!
thanks, you helped me a lot!
How to add them all?
its not working
Thank you so much dude. I got a step wrong and learned from it after rewatching the video a couple of times. The positive and negative matters when looping. I will always keep it in mind now.
how do i make a pop down menu ?
Saviour.