Mar

29

#include<stdio.h>
void main(){
char st[100];
int i,j;
printf(“Enter a string: “);
gets(st);

for(i=0;st[i]!=’\0′;i++){
for(j=0;j<=i;j++){
printf(“%c\t”,st[i]);
}
printf(“\n”);
}
}


Leave a Reply