#include void main(){ // A counting loop int i = 0; while(i < 10){ printf("%d\n", i); i++; } for(int i = 0; i < 10; i++) printf("%d\n", i); }