C Program to Print K Shape Alphabets Pattern

C Program to Print K Shape Alphabets Pattern

Program to print k shape alphabets pattern in c; Through this tutorial, we will learn how to print k shape alphabets pattern using for loop and while loop in c programs.

Programs to Print K Shape Alphabets Pattern in C

  • 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 output 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 output 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 

Recommended C Programs

AuthorAdmin

My name is Devendra Dode. I am a full-stack developer, entrepreneur, and owner of Tutsmake.com. I like writing tutorials and tips that can help other developers. I share tutorials of PHP, Python, Javascript, JQuery, Laravel, Livewire, Codeigniter, Node JS, Express JS, Vue JS, Angular JS, React Js, MySQL, MongoDB, REST APIs, Windows, Xampp, Linux, Ubuntu, Amazon AWS, Composer, SEO, WordPress, SSL and Bootstrap from a starting stage. As well as demo example.

Leave a Reply

Your email address will not be published. Required fields are marked *