malloc的内存分配之 malloc(0)的内存分配情况
#include using namespace std; int main() { char *p; if((p=(char *)malloc(0))==NULL) puts("got a null...
Free Open Share