だから私が関数を書くとき
void sort (int oldarray[], int length)
{
//imagine there is a function here that runs a loop and finishes with a sorted:
newarray[];
}
次のようなメイン関数で、newarray[]をoldarray[]に置き換えるにはどうすればよいですか。
int main()
{
int length = 7
int oldarray[length]
//here would be a loop that populates the oldarray
sort(oldarray[], length)
//a loop that prints the newarray[] from the sort or main function
}
参考までに、これは宿題ではありません。私は自分自身を教えているので、あなたは私が彼らの苦労して稼いだお金から教授をだますのを手伝っていません。