//test recursion itter(int start, int count){ int i; if(count > 0){ itter(start, count / 2); for(i=0;i