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.
foo次の型を持つ関数で C のインターフェイスを使用しようとしています。
foo
void foo(double x[]);
xただし、この関数に渡したい配列は、スタック メモリに対して大きすぎます。に動的配列を渡す方法foo、またはスタック メモリのサイズを増やす方法はありますか?
x