ARGUMENT AND PARAMETER -DIFFERENCE BETWEEN THEM

preview_player
Показать описание
KNOW THE DIFFERENCE BETWEEN ARGUMENT AND PARAMETER AND USE THESE WORDS PRECISELY.
Рекомендации по теме
Комментарии
Автор

Amen to the indian people on youtube that explain everything better than teachers do.

xiaotianlin
Автор

This was the simplest explanation I could find. Thank You!!!

fastdollar
Автор

Enjoyed the video but, for the love of god, dearest Indian brothers and sisters, PLEASE STOP USING LENGTHY INTROS. Nobody got time for that!

ForsakePariah
Автор

Finally I understood what arguments and parameters mean. Thanks for the simple explanation, keep up the good work.

fernandasouza
Автор

Nice thanks for explaining the difference

arnavchaudhary
Автор

Good one mate, you just made it click, thank you so much!

charlielol
Автор

You actually made my day. The clearest explanation I've come across so far. Straight to the point!

salinas
Автор

Hey, THANK YOU! I appreciate the knowledge that you shared - really help cement down some basic points of confusion - the terminology can be confusing if instructors get sloppy with what they share - you cleaned that up and made it clear. Owe you one!

USSBARBEL
Автор

if I understand correctly: you define a function with a parameter, when you call the function it needs arguments. correct?

scoutee
Автор

Your explanation is really informative! Thanks for sharing!

khangthaitran
Автор

After I'm watching this tutorial,
I'm clearly learned about, argument & parameters.... thanks

sathish
Автор

Great explanation. Thank you very much.

trejern
Автор

Means we give argument to the parameters?

DoorsMoreHoes.
Автор

Straightforward and simple to understand thank you

jpdanda
Автор

This has just cleared entire chapter for me

LuffyTaro
Автор

THANK YOU! Easy enough, I finally get it though, wish someone layed it out a while ago.

jaybee
Автор

#include <stdio.h>
int sum (int a, int b ); // this is call prototype
void main ( ) {
int x {}, y{};
cout << "/n Enter value of x and y to sum them up : " ;
cin >> x >> y ;
cout << "the result is " << sum( x, y ) ;
}
int sum (int a, int b ) {
int c {};
c= a +b ;
}
Q : is it correct ? and if it's correct is x and y the argument or perimeter ?? thank xd for answer me and any encouragement

phuthyert
Автор

Thanks for easy explanation it totally
Cleared my doubt

factorboy
Автор

You defined it short and simple. What is your age bro? Thanks for the upload. Keep up the good work.

gyangaha
Автор

Thanks for the video, it demystifies everything.

allanerissat