‘&’ symbol has two meanings in C and C++. Address of Operator: returns address of a variable. int a = 3; printf(“%d”, ...
Category ‧C
malloc( ) and free( )
allocates the requested memory and returns a pointer to it. (Dynamic memory allocation) should #include<stdlib.h> void *malloc(# of bytes): ...