scanf ("%d,%c", &a,&b); p = &a; q = &b; printf("%d\n", a); printf("%d\n", *p); printf("%c\n", b); printf("%c\n", *q); return 0;
確定! 回上一頁