Computer Science, asked by AlanGeorge, 1 year ago

Write a TURBO C++ program for the following output:-
1
121
12321
1234321
12321
121
1

Answers

Answered by omegads03
0

#include<stdio.h>

#include<conio.h>

{

int i;

i=0;

for ( i=0; i <10; i++)

for ( i=1 ;i <9 ;i--);

getch();

}

Similar questions