/* File: while1.c Testing out while loops. */ #include int main() { int i ; i = 1 ; while (i <= 25) { printf("17 times %d is %d\n", i, 17*i) ; i = i + 1 ; } printf("TA DA!\n") ; return 0 ; }