所以我正在使用 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] << ' ';
}
}