请问这个程序运行的时候编译显示C:\Program Files (x86)\Dev-Cpp\MinGW64\x86_64-w64-mingw32\bin\ld.
*^~^ 2020-01-20 05:17:16 #include<iostream>
using namespace std;
static int reset(),next(int),last(int),other(int);
int i(5);
int main()
{
int i=reset(),j;
for(j=1;j<=3;j++)
{
cout<<i<<','<<j<<',';
cout<<next(i)<<',';
cout<<last(i)<<',';
cout<<other(i+j)<<endl;
}
}
static int reset()
{
return i;
}
static int next(int j)
{
j=i++;
return j;
}
static int last(int j)
{
static int i(10);
j=i--;
return j;
}
static int other(int i)
{
int j(15);
return i=j+=i;
}