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?