How far have you got and where are you stuck? We won't write the code for you, unless you're willing to pay the going rate.
Codings: Code: #include<stdio.h> #include<conio.h> void main(void) { clrscr(); for (int a=0;a<8;a++) { if (a==0) { for (int b=0;b<1;b++) printf("&\n"); } else if (a>0 && a<7) { for (int c=0;c<1;c++) printf("& &\n"); } else if (a==7) { for(int d=0;d<11;d++) printf("& "); } } getch(); } I suppose it couldn;t made without conditions. Prof: