摘要:
#include <stdio.h> #include <malloc.h> void f(int **q) { *q=(int *)malloc(sizeof(int)); **q=5; } int main(void) { int *p; f(&p); printf("%d\n",*p); re 阅读全文
posted @ 2016-07-09 18:17
Howareyou?
阅读(182)
评论(0)
推荐(0)