C Parameter Passing Tutorial

preview_player
Показать описание
C Programming.
Learn how to use value, reference, and pointer parameter passing.

See the complete program at:
Рекомендации по теме
Комментарии
Автор

My professor told us that parameters cannot be passed by reference in C (the said thing is only possible in C++) and they're passed by adress. I currently use VS 2022 and I get errors when trying to declare function parameters with '&" eg: void fun(int &var). Why is this?

FrznTeamRO