C Program to Print K Shape Alphabets Pattern

In this tutorial, i am going to show you how to print k shape alphabets pattern with the help of for loop and while loop in c programs.

All C Programs to Print K Shape Alphabets Pattern

  • C Program to Print K Shape Alphabets Pattern using For Loop
  • C Program to Print K Shape Alphabets Pattern using While Loop

C Program to Print K Shape Alphabets Pattern using For Loop

#include <stdio.h>
int main()
{
    int i, j, rows, alphabet;
    
    printf("Enter K Shape Alphabets Pattern Rows = ");
    scanf("%d",&rows);
    printf("\nThe K Shape Alphabets/Characters Pattern\n"); 
    
    for (i = rows - 1; i >= 0; i-- ) 
	{
		alphabet = 65;
		for (j = 0 ; j <= i; j++ ) 	
		{
			printf("%c ", alphabet + j);
		}
		printf("\n");
	}
		
	for (i = 1 ; i < rows; i++ ) 
	{
		alphabet = 65;
		for (j = 0 ; j <= i; j++ ) 	
		{
			printf("%c ", alphabet + j);
		}
		printf("\n");
	}
    return 0;
}

The result of the above c program; is as follows:

Enter K Shape Alphabets Pattern Rows = 5
The K Shape Alphabets/Characters Pattern
A B C D E 
A B C D 
A B C 
A B 
A 
A B 
A B C 
A B C D 
A B C D E 

C Program to Print K Shape Alphabets Pattern using While Loop

#include <stdio.h>
int main()
{
    int i, j, rows, alphabet;
    
    printf("Enter K Shape Alphabets Pattern Rows = ");
    scanf("%d",&rows);
    printf("\nThe K Shape Alphabets/Characters Pattern\n");
	i = rows - 1;
	
	while (i >= 0 ) 
	{
		alphabet = 65;
		j = 0 ;
		while ( j <= i) 	
		{
			printf("%c ", alphabet + j);
			j++;
		}
		printf("\n");
		i--;
	}
		
	i = 1 ;
	while ( i < rows ) 
	{
		alphabet = 65;
		j = 0 ;
		while ( j <= i ) 	
		{
			printf("%c ", alphabet + j);
			j++;
		}
		printf("\n");
		i++;
	} 
    return 0;
}

The result of the above c program; is as follows:

Enter K Shape Alphabets Pattern Rows = 5
The K Shape Alphabets/Characters Pattern
A B C D E 
A B C D 
A B C 
A B 
A 
A B 
A B C 
A B C D 
A B C D E 

More C Programming Tutorials

Leave a Comment