利用C++不使用递归,循环和goto,打印1到100 的某一答案分析

实验环境是在64位linux下使用g++编译器
 
 下面是Mark Gordon的答案
 
 1 The below one works on my system, can't guarantee results though.
 2 
 3     #include <iostream>
 4     #include <stdlib.h>
 5     int num;
 6     void(**rptr)();
 7     void foo() {
 8       if(num >= 100) exit(0);
 9       std::cout << ++num << std::endl;
10       *rptr++ = foo;
11     }
12     int main() {
13       rptr = (void(**)())alloca(sizeof(*rptr) * 200) - 1;
14       foo();
15       return 0;
16     }

 

注意他说在其他人的电脑不一定work,也就是说跟编译器或者机器型号有关

 

下面是他本人对这个答案的解释

Mark Gordon
 
 
16 votes
Show

posted on 2016-09-03 12:13  simonlin  阅读(316)  评论(0编辑  收藏  举报

导航