C Program For Diamond Pattern With Star | Number | Alphabets

Sdílet
Vložit
  • čas přidán 27. 08. 2024
  • This video explains about how to write c program to print diamond patterns with start, numbers, and alphabets.
    This C programming tutorial will help you for your next c program interview.
    Please Share and Subscribe "ECIT Engineering" :
    bit.ly/3c7zcax
    IoT ESP8266 NodeMCU :
    • IoT ESP8266 NodeMCU Ar...
    Arduino Project and Code Playlist:
    • Arduino Projects and C...
    #ecit ‪@ecit‬

Komentáře • 21

  • @sixihili1956
    @sixihili1956 Před rokem +3

    Nice and simple explanation thanks a lot 👍

    • @ecit
      @ecit  Před rokem +1

      Welcome!

  • @A_D1K
    @A_D1K Před 5 dny +2

    Greatest Explanation ! 🤌🏻

    • @ecit
      @ecit  Před 5 dny +1

      @@A_D1K Thank You!

  • @Dpz918
    @Dpz918 Před 6 měsíci +2

    Your way of explaining is wonderful !
    Can u please tell me that which IDE u are using to run the Program?

    • @ecit
      @ecit  Před 6 měsíci +1

      Thanks! I am using Visual Studio Code with Mingw. You can use any IDE

  • @nishanthrajan3360
    @nishanthrajan3360 Před rokem +1

    Very good explanation! thank you very much

    • @ecit
      @ecit  Před rokem +1

      Most Welcome!

  • @user-rd8ie6ut5l
    @user-rd8ie6ut5l Před 6 měsíci +1

    that was great. thank you

    • @ecit
      @ecit  Před 6 měsíci

      Most Welcome!

  • @gisavi4210
    @gisavi4210 Před 27 dny +1

    thank you bro

    • @ecit
      @ecit  Před 24 dny

      @@gisavi4210 welcome!

  • @Dpz918
    @Dpz918 Před 6 měsíci +1

    I have two questions!!
    1: Sir in the formula
    For (c = 1 ; c

    • @ecit
      @ecit  Před 6 měsíci

      1. Yes, first for loop is about we need to put space in column, so space up to (n-r), c is use to represent the current column we are handling it can be space or number.
      2. r++ is incrementing the row and c++ is incrementing column for current row number.

    • @Dpz918
      @Dpz918 Před 6 měsíci +1

      @@ecit Thanks a lot .. keep up the good work !

  • @sridevisri9816
    @sridevisri9816 Před 6 měsíci +1

    nice explanation tq sir do some pattern problems in c .

    • @ecit
      @ecit  Před 6 měsíci

      Sure, Thanks!
      You may like this one also,
      czcams.com/video/cifX9pEq81s/video.htmlsi=PPe-hGW60nP7pzPv

  • @mot0666
    @mot0666 Před 8 měsíci +1

    Thanks ❤

    • @ecit
      @ecit  Před 8 měsíci

      Most Welcome!

  • @sachinparmar-tp5bp
    @sachinparmar-tp5bp Před 11 měsíci +2

    Kya itna jada loop ka use karna program coplexity nhi bada dega

    • @ecit
      @ecit  Před 11 měsíci +1

      Yes, it will, however you will need atleast 2 loops to implement this.