What does char *p = (char*)malloc(100); mean?
Answers
Answered by
3
malloc means memory allocation .So above statement states that there is pointer p allocated memory of 100 bytes on run time.
Similar questions