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 1

Solution

#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&

Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site