// uC example 3 void main(int n) { int i; i=0; while (i < n) { print i; i=i+1; } }