parameter passing techniques call by name

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

Рекомендации по теме
Комментарии
Автор

Your succinct explanation was highly effective and greatly appreciated. Thank you very much!

waldo
Автор

Thank you so much for such a crystal clear explanation sir..!

praveenpaul
Автор

Very nice explanation..
Thank you sir

wadhwanijayesh
Автор

thank u sir, ur explanation is very clean

Th-gbct
Автор

In call by name how we can access the actual arguments since they are the local variables of main function??

arundhakad
Автор

thanq sir, great explanation with suitable examples . But you still confused us . Anyways thank you

sharathchandra
Автор

6:38 In call by reference method do we need to pass address in actual parameters and use pointers in formal parameters ?

AjayKumar-wfmp
Автор

are the changes restricted to the scope of the init, or do they stay after returning to main?

Chatbot
Автор

You have a nice handwriting, but it was kinda difficult to understand what you were saying. - Maybe it would help if you made subtitles on english. :)

thomascarlsen
Автор

Good explanation. Way less convoluted than my professor's lecture.

FreeThinkingWisdom
Автор

Which file can be news instead of the header file?

ashiquetera
Автор

void increment(int a)
{
a+=2
}

void assign(int a)
{
a=a+2
}

In which of the parameter passing technique a call to increment(b) will have a different effect
from a call to assign(b)

1) call by value
2) call by value result
3) call by reference
4) call by name

amrataramchandani
Автор


After the function call how can the array i.e a[10] contains zero.... U are just passing zeroth index of an array... Could u verify it again

lokesh
Автор

I don't understand the reason behind not selecting any programming language to explain all these techniques

sureshrakes