[360] 告诉我这个结果是什么? [值得思考的问题]

#include <stdio.h>
#include <stdlib.h>

int main() {
    int *p;
    *p = 3;
    printf("%d\n", *p);
    return 0;
}

原文地址:https://www.cnblogs.com/robbychan/p/3786731.html