Skip to main content

Posts

Showing posts with the label c program to build character diamond

C Program To Print Pyramid Of Numbers.

19) Sample C Program to print character pyramid. # include <stdio.h> # include <conio.h> main( ) { char i, j; clrscr(); for(i = 65; i <= 70; i++)  {    for(j = 65; j <= i; j++)       printf("%c", j);    printf("\n");  } getch( ); } 20) Sample C Program to print character diamond. # 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;  } getc...