{}
run-icon
main.c
#include <stdio.h> int main() { unsigned idx = 10; while (idx --> 0) { printf("Ping\n"); } return 0; }
Output