#include <stdio.h> int main() { int num=1234; printf("%p", &num); return 0; } //Ouput: //0xffffcbfc
0xffffcbfc是RAM还是硬盘地址存储器?
c
c ×1