A Quick Look At Memory: Passing Array by Reference

I have a question about passing a TArray of FStrings by reference. I was thinking that whenever you pass an Array into a function, in C it will always pass by reference automatically. In C++ does it actually pass an array by value? Or is it only applicable for this instance because the array is statically declared.

Privacy & Terms