// Another simple program which uses a while loop to print // first 1000 multiples of 13 // // Andrew Taylor - andrewt@unsw.edu.au // 25/3/2017 // #include int main(void) { int i; i = 13; while (i <= 13000) { printf("%d\n", i); i = i + 13; } return 0; }