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).

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 »