// Demonstration of nested while loops // // Written by: Angela Finlayson // Date: 19/09/2024 // // Print this pattern // // 1 2 3 4 5 // 1 3 5 // 1 3 5 // 1 3 5 // 1 2 3 4 5 #include #define SIZE 5 int main(void) { }