char functionOne(char a, char b, char c); int main () { char word = functionOne('h', 'e', 'y'); printf("%c\n", word); return 0; } ...
確定! 回上一頁