void main() { int a = 0; while(a < 5) { test(a++); } a = 0; while(a < 5) { test(a); a++; } }