Answer the question
In order to leave comments, you need to log in
What does this line (c++) mean?
void randl(float *mas, size_t n)
I understand that this is a void function, but what exactly is passed into it? And how I don't know
Answer the question
In order to leave comments, you need to log in
This is probably a function that takes a pointer to an array of floats and the size of the array.
(type size_t is an integer type, designed specifically for specifying the sizes of containers and arrays)
It is passed a pointer to a float and the second parameter is size_t.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question