C++ Programming Tutorial 10 - Intro to Functions

preview_player
Показать описание


~~~~~~~~~~~~~~~ CONNECT ~~~~~~~~~~~~~~~

~~~~~~~~~~~~~~ SUPPORT ME ~~~~~~~~~~~~~~

🅑 Bitcoin - 3HnF1SWTzo1dCU7RwFLhgk7SYiVfV37Pbq
🅔 Eth - 0x350139af84b60d075a3a0379716040b63f6D3853
Рекомендации по теме
Комментарии
Автор

if pow doesnt work with u make sure u insert the #include <math.h>

cloaky
Автор

A function is a reusable sequence of statements designed to do a particular job.

richardcarberry
Автор

Well done! I appreciate the time and attention you have put into these short but informative videos. Very helpful.

toddh
Автор

It's hard to imagine studying C++ without your videos and being able to function. In all seriousness, this is another phenomenal video, and thank you so much for sharing your knowledge and expertise!

PunmasterSTP
Автор

I really enjoy your videos Caleb!

Your indepth explanation makes it easy to understand, and I am having lots of fun learning to code!
Keep up the good work!

lukasholcer
Автор

dude I love how you explain everything in a simple manner, it makes debugging so much easier and makes it easier to understand what an error is talking about, you're awesome dude

technocuber
Автор

dang this video is from three years ago and the quality is still so good

itsaeri
Автор

This was the simplest and best explanation of Intro to Functions that I have come across.

fpuijkx
Автор

Can we pass an expression as arguments to the function??

sunrise_vlogs_daily
Автор

I was having trouble understanding functions and arguments/parameters so I looked up some help guides and made my own. All it does is multiply two numbers but I made it and it's mine. lol.


int multiplication(int num1, int num2) {

// this will accept two numbers and multiply them when the function is called
int product;
product = num1 * num2;
return product;

}

jessicadrawdy
Автор

THANK YOU MAN. You make my learning journey fun through your humor

snuuky
Автор

I love your videos sir... with very simple lingo... with some great humor

usamasiddiqui
Автор

Ur tutorials have been so helpful... you are amazing, thank u.

preciouskafula
Автор

I like the effort, but i feel as though it would be better if you screen shared actual code, it'd kind of difficult to learn something brand new and visualize what you are trying to talk about. Good video, good luck.

daleoverstreet
Автор

hi, any vidoe on how to use the c++ builder for writing programms and executing them.

musasey
Автор

great video. I have a question, if you are multiplying 2 integers such as 10 x 10 or 10 ^ 2 why does it return a double rather than an integer? Because the answer is 100 * 2 which is 200 and both of those numbers are whole. I also ran in to the same problem on a project i had where I was trying to divide 2 integers together like 25/55 and it was returning 0. I figured out that the ACTUAL answer was like 0.4 or something along those lines and since they were integers i had to static_cast them to doubles to get the actual accurate answer i wanted. In this case, is that whats going on? I'm just a little confused and would like to know whats going on behind the scenes.. Thanks in advance!

joshuadeione
Автор

keep it up Caleb you are Awesome! I want you to Continue your C tutorials too I want to have a clear understanding of Switches and loops. No one Explains like you <3 ThankU and Wish Your channel will grow more in future <3

hekklff
Автор

What's the namespace used for power predefined function?

ABZ
Автор

I'm having a hard time with these someone send help

kaela
Автор

I saw math and panicked. Should i panic?

HertoioLoco