Computer Science, asked by panchalyukta19, 5 hours ago

an array created using malloc function at run time is referred to as??​

Answers

Answered by psrchettinad47
0

Answer:

*array = malloc(10 * sizeof(int)); This computes the number of bytes that ten integers occupy in memory, then requests that many bytes from malloc and assigns the result to a pointer named array (due to C syntax, pointers and arrays can be used interchangeably in some situations).

Similar questions