标签: c
int main() { int **ptr; /* Lines of code*/ printf("%d",**ptr); }
在上面的代码中插入行,这样答案应该是4但没有
初始化任何新变量。
任何人都可以帮助我吗?
答案 0 :(得分:1)
ptr = malloc(sizeof(int*)); *ptr = malloc(sizeof(int)); **ptr = 4;