I have a piece of code, for example, writing number 5 and I get the pyramid with number 5
* ** *** **** *****
Need to look like
****1 ***22 **333 *4444 55555
A piece of my code
for (i = 0; numero > i; i++) { for (k = i; k >= 0; k--) { printf("*"); } printf("n"); } system("PAUSE");