Alphabet pattern for Z In C
Code : Alphabet pattern For Z in C language first open your compiler to run this c language code .open dev++ or notepad++ comipe and run this code on dev++ . #include<stdio.h> #include<conio.h> #include<stdlib.h> int main() { int i,j,count=11; system("color 0a"); for(i=0;i<=11;i++) { for(j=0;j<=11;j++) { if(i>=0&&i<2||i>9&&i<=11||i>=2&&i<=9&&j==count) { printf("**"); } else { printf(" "); } } count=count-1; printf("\n"); } getche(); } if you have any problem in code then you can comment !