Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
typedef const char* Argv[3+ 8];
この時点での私の推測では、[3+8]Argv型(const char *型)の匿名配列を作成しています。私が正しければ、匿名配列の部分は基本的に無意味です。
[3+8]
Argv「11 個の const char* の配列」の同義語として定義されます。
Argv
と同じ
const char* somevar[11];
またはIOW
Argv somevar;