int b = 12345678; char *p2; p2 = &b; printf("%d\n", * p2); printf("%d\n", *(p2 + 1));
这里怎么让P2指向‘56’呢。。?
收起
b是整数啊,不是字符串
报告相同问题?