#include <stdio.h> char ary[] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10}; char *p1 = ary; char *p2; int *pn; void test() { p1+=2; //p1[0] = 2 pn ...
確定! 回上一頁