/* -*- C++ -*- */ /************************************************************************* * Copyright(c) 1995~2005 Masaharu Goto (root-cint@cern.ch) * * For the licensing terms see the file COPYING * ************************************************************************/ /* * loop compilation if statement test */ #include void test1() { int i; int a[10]; for(i=0;i<10;i++) { a[i]=i*3; } for(i=0;i<10;i++) { printf("a[%d]=%d\n",i,a[i]); } } /* if else compile */ void test2() { int i; int a[10]; for(i=0;i<10;i++) { a[i]=i; if(i%2) { a[i]=a[i]*2; } else { a[i]= -1*a[i]; } } for(i=0;i<10;i++) { printf("a[%d]=%d\n",i,a[i]); } } #define NUM 10 /* nested if compile */ void test3() { int i; int a[NUM]; for(i=0;i