diff --git a/test/data/test_run_stat.c b/test/data/test_run_stat.c new file mode 100644 --- /dev/null +++ b/test/data/test_run_stat.c @@ -0,0 +1,29 @@ +/* +LANG: C +*/ +#include +#include + +int main() +{ + int a,b,d; + int i,j; + char *c = malloc(100000); + + scanf("%d %d",&a,&b); + d = a+b; + // printf("%d\n",a+b); + for(j=0; j<1; j++) + for(i=0; i<100000000; i++) { + b+=a; + a++; + } + if((c!=NULL) || (b<100)) + b++; + if(b==100) + printf("hello"); + else + printf("%d\n",d); + return 0; +} +