运行 ❯
获取您自己的
网站
×
更改方向
更改主题,暗/亮
进入 Spaces
#include <stdio.h> #include <stdlib.h> int main() { // Allocate memory int *ptr; ptr = calloc(4, sizeof(*ptr)); // Write to the memory *ptr = 2; ptr[1] = 4; ptr[2] = 6; // Read from the memory printf("%d\n", *ptr); printf("%d %d %d", ptr[1], ptr[2], ptr[3]); return 0; }
2
4 6 0