|
|
sizeof(a);
does not work (always return 4, which I think is the size of the pointer to double)Any help appreciated!a
cannot be treated as a normal array? I mean I can treat an array as both pointer and array if I were to declare it locally.
sizeof(ARRAY)
do not work in array passed from another function?
int n
?std::array<(size_you_want),(type_you_want)>
, a std::vector<(data_type)>
(resize-able array) or an std::map<(access_type),(data_type)>
|
|