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...
All HR and Technical interview questions with answers for freshers and experienced professional. It helps job seekers who are about to attend interviews.