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.
プログラムに整数の配列を渡そうとしています。それを整数に変換するより良い方法はありますか? 現在、「可変サイズのオブジェクトが初期化されていない可能性があります」というエラーが発生しています。
for(i = 0; i < argc; i++) { int arr[i] = atoi(argv[i]); }