char (*x3)() = **x(); // Pointer to a function returning char. printf("This is the value: %c\n", x3());. } Alternatively, you could skip declaring x3 ...
確定! 回上一頁