#include<bits/stdc++.h>
using namespace std;
struct a{
long long a[10000];
};
int main(){
//cout<<sizeof(a)<<endl; 80000 per `a'
a *p=new a;
a *maxn=NULL;
while(p!=NULL
#if __cplusplus>=201103L
&&p!=nullptr
#endif
){
maxn=max(maxn,p);
p=new a;
}
cout<<"The farthest address is:\n\t"<<maxn<<endl;
return 0;
/*
* DON'T RUN! DON'T RUN!! DON'T RUN!!!
* If you ran,you would probably regret...
* Just like me...
* I nearly KILLED my win10(ASUS)!!!
*/
}
我强制关机,才没有炸……