Tom Five Times V
Code Examples
Tom Five Times IV
n5.c
Switch
/* Print Tom five times. */
#include <stdio.h>
int main() {
int m = 0;
while(6 - ++m)
printf("Tom\n");
}
Tom Five Times IV
Switch