C Programming Tutorial - 56 - Passing Arguments to Functions

preview_player
Показать описание
Рекомендации по теме
Комментарии
Автор

You are an amazing teacher, you made me understand what seemed like gibberish during my lectures

tchau
Автор

lets be honest....we rely on these godlike tutorials to pass our test, thank you!

ngkean
Автор

Online Class Sucks, but thanks to Bucky Roberts I enjoyed my programming course. Say hi to those are watching it in their self-studying. Fighting.

gelbertapawon
Автор

You are my new C programming professor. Thank you for helping me figure out my homework! I am so glad that there is a resource like this that is available. You're content is very helpful, I appreciate it.

micahrumbaugh
Автор

Been struggling for two days now to understand this, and you explain it so simple! Thanks so much

leodari
Автор

This video just saved my sanity!!! I have been having problems with this project for days and couldn't figure it out but this video explained to me what a whole chapter in my textbook couldn't seem to. THANK YOU!

carriesheldrick
Автор

u save my life bro, i watch many other turtorails but still get error until u watched ur video .

lyhourtte
Автор

Now, 8 years later, the programming is still timeless, but we don't need the programm you wrote anymore because the Dolar and Euro Price conversion is 1 to 1. But still loving your Videos today <3!

marvin
Автор

holy crap. you are a better at explaining this than my college professor. Thank you

TurboBlu
Автор

The best I've come across so far.

johnolds
Автор

Here's my take on the conversion to USD program

#include <stdio.h>
#include <math.h>
void convert_to_USD (float euro);

int main (void)
{
float euro_price = 0.00;

printf("Enter euro amount: \n", euro_price);
scanf("%f", &euro_price);
convert_to_USD(euro_price);

return 0;
}

void convert_to_USD (float euro)
{
float usd = euro * 1.37;

printf(" %.2f Euros is equal to %.2f USD \n", euro, usd);
return;
}

MoNeenja
Автор

Excellent tutorials, keep up the great work!

RGMonline
Автор

Man i love u! Learning with you is so easy and interesting. You've made my study better<3

branzi
Автор

Thanks for everything, I will follow that channel.

omerkenanucmaklioglu
Автор

how can you execute several different functions in random order?

PoorJudgement
Автор

Thank you very much understood to the last drop <3

dilanmeegodavithana
Автор

So arguments is just only piece of information from variable

masbro
Автор

I'm surprised your compiler isn't warning you about assigning doubles into float variables. I thought the literals defaulted to double when you don't specify "f" after them. For example: float europrice1 = 1.00f;

longbra
Автор

how can i find minimum and maximum value for N numbers by using parameter passing in C programming ??

rubayethossain
Автор

hey.. i wana know something.. why do i need a new void function to do
this? i mean, i've tried doing this equation in just one function
without (Void) and it worked.. so what's the point from passing it to
another function?

Dallas-