Author name: Amlendra

I am an embedded c software engineer and a corporate trainer, currently, I am working as senior software engineer in a largest Software consulting company . I have working experience of different microcontrollers (stm32, LPC, PIC AVR and 8051), drivers (USB and virtual com-port), POS device (VeriFone) and payment gateway (global and first data).

star patterns in C

Star patterns in C

In this blog post, we are collecting some popular star patterns with example code. Star patterns are commonly used to improve the logical skill of any programming language. Here we have selected C as a programming language for mentioned start patterns. Primary prerequisites for star patterns in C: You must have basic knowledge of loops […]

Star patterns in C Read More »

program to print heart star pattern

C program to print heart star pattern

  #include <stdio.h> int main() { int x = 0,y = 0; unsigned int size = 0; printf(“Enter the size = “); scanf(“%u”,&size); for(x=(size/2); x<=size; x+=2) { for(y=1; y<(size-x); y+=2) { printf(” “); } for(y=1; y<=x; ++y) { printf(“*”); } for(y=1; y<=(size-x); ++y) { printf(” “); } for(y=1; y<=x; ++y) { printf(“*”); } printf(“\n”); }

C program to print heart star pattern Read More »

C program to print 8 star pattern

C program to print 8 star pattern

  #include <stdio.h> int main() { int x = 0,y = 0; unsigned int size = 0; printf(“Enter the size = “); scanf(“%u”,&size); for(x=1; x<(size*2); ++x) { for(y=1; y<=size; ++y) { // Condition for corner and center intersection space if(((x==1) && (y==1 || y==size)) || ((x==size) && ((y==1) || (y==size))) || (x==size*2-1 && (y==1 ||

C program to print 8 star pattern Read More »