Pattern 9: C Program to print ‘K’ type Star Pattern

Introduction:

C Program to print the K Star Pattern Program. We will use the two for loops to print the ‘K’ Pattern.

Here is the expected output of the program when user input is 5

Write a C Program to print below pattern ( K Star Pattern ) :

* * * * *
* * * *  
* * *  
* *    
*     
* *    
* * *   
* * * *  
* * * * *
 

 

Note : This is one the Series of pattern programs in C.

 

K Star Pattern Program in C:

 
 

Program Output:

k-star-patter-program-in-c
As you can see from above output. Program is able to print ‘K’ type Star pattern.

 

Similar Star pattern programs:

More C programs:

C Tutorials with simple Examples:

 
 
 

Venkatesh

Hi Guys, I am Venkatesh. I am a programmer and an Open Source enthusiast. I write about programming and technology on this blog.

You may also like...

1 Response

  1. […] Pattern 9: Print ‘K’ Star Pattern […]

Leave a Reply