C program using 2Dimension arrays ie intArrayij Assuming the
C program using 2Dimension arrays: i.e intArray[i][j]
Assuming the board is empty initially: Ask user for an odd integer between 1Solution
#include <stdio.h>
int main() {
int n, c, k, space = 1;
printf(\"Enter number of rows\ \");
scanf(\"%d\", &n);
space = n - 1;
for (k = 1; k <= n; k++) {
for (c = 1; c <= space; c++)
printf(\" \"); space--;
for (c = 1; c <= 2*k-1; c++) printf(\"*\"); printf(\"\ \");
}
space = 1;
for (k = 1; k <= n - 1; k++) {
for (c = 1; c <= space; c++) printf(\" \");
space++;
for (c = 1 ; c <= 2*(n-k)-1; c++) printf(\"*\");
printf(\"\ \");
}
return 0;
}
![C program using 2Dimension arrays: i.e intArray[i][j] Assuming the board is empty initially: Ask user for an odd integer between 1 Solution#include <stdio.h& C program using 2Dimension arrays: i.e intArray[i][j] Assuming the board is empty initially: Ask user for an odd integer between 1 Solution#include <stdio.h&](/WebImages/3/c-program-using-2dimension-arrays-ie-intarrayij-assuming-the-967011-1761499035-0.webp)