// Demonstration of while loops // // Written by: Angela Finlayson // Date: 22/09/2024 // // Print this pattern // // 1 2 3 4 5 #include #define SIZE 5 int main(void) { int col = 1; //5 while (col <= SIZE) { printf("%d ", col); col = col + 1; } printf("\n"); }