void chline(char ch,int i,int j) { int k=1; for(;k<i;k++) printf(" "); for(;k<=j;k++) printf("%c",ch); }