\* C Program to display the triangular word pattern *\
# include < stdio.h >
int main( )
{
int i, j, r ;
char ch ;
printf(" Enter the Number of row : ") ;
scanf("%d ", & r) ;
printf("\n Pattern are : \n\n") ;
for ( i = 1 ; i < = r ; i++ )
{
ch = 65
for ( j = 1 ; j < = i ; j++ )
{
printf(" %c", ch) ;
ch++ ;
}
printf(" \n ") ;
}
return ( 0 );
}