#include <stdlib.h> #include <stdio.h> int main() { char c = 'c'; const char *p = &c; char const *q = &c; char *const r = &c; return 0; }.
確定! 回上一頁