An array "decays" into a pointer to its first element, so scanf("%s", string) is equivalent to scanf("%s", &string[0]) . On the other hand, ...
確定! 回上一頁