Use two loops, one nested into another. For example (in C-like syntax [pseudocode]), assuming you have a function like `void draw_ellipse(int row, int column): ```C / int rows = 5; / int columns = 3; / for (int r = 0; r < rows; r++) { / for (int c = 0; c < columns; c++) { / draw_ellipse(r,c); / } / } / ```

Talk Doctor Online in Bissoy App