#include #include "the_third_rule.h" void count_to_hundred(const int input){ int i=input; while (i<100){ ++i; printf("i=%d\n",i); } return; } void count_to_ten(const int input){ int i=input; while (i<10){ ++i; printf("i=%d\n",i); } return; } int main(void){ int i; for (i=0;i<3000000;++i){ count_to_ten(i); count_to_hundred(i); } return 0; }