だから私はVisual Studio C ++を使用しています。私の現在のプログラムは逆に配列を作成していました...しかし、「void」の前に「;」を付ける必要があります」というエラーが表示されます。助けていただければ幸いです。
#include <iostream>
using namespace std;
int main()
//this function outputs the array in reverse
void reverse(double* a, int size)
{
for(int i = size-1; i >= 0; --i)//either i=size or i=size-1
{
cout << a[i] << ' ';
}
}