Computer Science, asked by kalyandk10, 1 year ago

What does char *p = (char*)malloc(100); mean?

Answers

Answered by mrunal6117
3

malloc means memory allocation .So above statement states that there is pointer p allocated memory of 100 bytes on run time.

Similar questions