#include <stdio.h> int main() { for (int i = 0; i < 5; i++) { printf("i is %d\n", i); } return 0; }
Click Run to execute this code.