Program to print character diamond - 100 Most Important C# Programs

100 Most Important C# Programs

20. Program to print character diamond.

Code:

# include <stdio.h>

# include <conio.h>

main( )

{

char i,j,n,r;

int s,sp=40;

clrscr( );

for(i=65;i<=75;i+=2)

{

for(s=1;s<=sp;s++)

printf(“ “);

for(j=65;j<i;j++)

printf(“%c”,j);

printf(“\n”);

sp=sp-2;

}

sp=sp+4;

for(n=73;n>=65;n-=2)

{

for(s=1;s<=sp;s++)

printf(“ “);

for(r=65;r<=n;r++)

printf(“%c”,r);

sp=sp+2;

}

getch( );

}





All materials on the site are licensed Creative Commons Attribution-Sharealike 3.0 Unported CC BY-SA 3.0 & GNU Free Documentation License (GFDL)

If you are the copyright holder of any material contained on our site and intend to remove it, please contact our site administrator for approval.

© 2016-2025 All site design rights belong to S.Y.A.