Search C Program | nimishsoft@gmail.com

Alphabet Patterns


A
AB
ABC
ABCD
ABCDE
E
DE
CDE
BCDE
ABCDE
Code of above pattern


Code of above pattern


A
BA
CBA
DCBA
EDCBA
E
ED
EDC
EDCB
EDCBA
Code of above pattern


Code of above pattern


ABCDE
ABCD
ABC
AB
A
ABCDE
BCDE
CDE
DE
E
Code of above pattern


Code of above pattern


EDCBA
DCBA
CBA
BA
A
EDCBA
EDCB
EDC
ED
E
Code of above pattern


Code of above pattern


A
BB
CCC
DDDD
EEEEE
E
DD
CCC
BBBB
AAAAA
Code of above pattern


Code of above pattern


EEEEE
DDDD
CCC
BB
A
AAAAA
BBBB
CCC
DD
E
Code of above pattern


Code of above pattern



Related Links:
Number Patterns
http://cbasicprogram.blogspot.in/2012/04/number-patterns.html

Star Patterns
http://cbasicprogram.blogspot.in/2012/03/star-patterns.html

Series Programs
http://cbasicprogram.blogspot.in/2013/01/series-program.html

66 comments:

  1. Write the code to print the following pattern.
    1
    2 3 2
    3 4 5 4 3
    4 5 6 7 6 5 4
    5 6 7 8 9 8 7 6 5
    6 7 8 9 0 1 0 9 8 7 6
    7 8 9 0 1 2 3 2 1 0 9 8 7
    8 9 0 1 2 3 4 5 4 3 2 1 0 9 8

    ReplyDelete
    Replies
    1. Attention everyone, the file provided above is not working. I have been looking for the working file and finally found it.



      ✔️Click Here To Download http://gestyy.com/e0GAyS
      ✔️Click Here To Download

      ✔️Click Here To Download http://exe.io/XONVsO6l

      ✔️Click Here To Download


      ✔️Click Here To Download
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .

      .

      .
      .

      .

      .
      .
      .
      .

      Mn.
      ..

      .
      .
      .
      ..
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      ..
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .
      .cx
      .sdcccxxxcxcxcxxccx

      Delete
  2. Take hint from http://cbasicprogram.blogspot.in/2013/01/number-pattern-52.html

    ReplyDelete
  3. It's simply can be made using ASCII value...Use variable whose value is 65 initially and then increment with every print statement

    ReplyDelete
  4. i need the code for a sunflower pattern. can any one pls help me.

    ReplyDelete
  5. I'm very glad when i get this site because this programme is very important.

    ReplyDelete
  6. I'm very glasd after getting this site it's very helpful.

    ReplyDelete
  7. Really guyss this site's vey helpful!! Thnks NIMISH GARG sir...

    ReplyDelete
  8. A
    A B
    A B C
    A B C D
    A B C
    A B
    A

    what is code for above pattern in C

    ReplyDelete
    Replies
    1. #include
      using namespace std;
      int main()
      {
      for(int i=1;i<=4;i++)
      {
      char a='A';
      for(int j=1;j<=i;j++)
      {cout<<a;a++;}
      cout<<endl;
      }
      for(int i=1;i<=3;i++)
      {
      char a='A';
      for(int j=1;j<=4-i;j++)
      {cout<<a;a++;}
      cout<<endl;
      }
      return 0;
      }

      Delete
  9. Replies
    1. #include
      using namespace std;
      int main()
      {
      char a='J';
      for(int i=1;i<=4;i++)
      {

      for(int j=1;j<=5-i;j++)
      {cout<<a;a--;}
      cout<<endl;
      }

      return 0;
      }

      Delete
  10. This comment has been removed by the author.

    ReplyDelete
  11. Replies
    1. /*
      A
      BA
      BAB
      ABAB
      */

      #include
      using namespace std;
      int main()
      {
      int i,j,n;
      cin>>n;
      int value=65;
      for(i=0;i<n;i++)
      {
      for(j=0;j<=i;j++)
      {
      if(i==0)
      value=65;
      if(value==65)
      {
      cout<<char(value);
      value=66;
      }
      else
      {
      cout<<char(value);
      value=65;
      }
      }
      cout<<"\n";
      }
      return 0;
      }

      Delete
  12. I need the code for the following print:
    A B C D C B A
    A B C C B A
    A B B A
    A A

    PLEASE REPLY ME SOON

    ReplyDelete

  13. A
    B A
    C B A
    D C B A


    how to write this program in c++

    ReplyDelete
  14. whats pattern for
    aaabbbccc
    aabbcc
    abc

    ReplyDelete
  15. write code for following pattern
    BRINDIA
    R
    I
    N
    D
    I
    A any one help to me

    ReplyDelete
  16. write code for following pattern
    BRINDIA
    R
    I
    N
    D
    I
    A any one help to me

    ReplyDelete
    Replies
    1. #include
      int main()
      {
      int i,p,j;
      char str[]="BRINDIA";
      printf("%s\n",str);
      for(i=1;i<7;i++)
      {
      printf("%c\n",str[i]);
      }
      }

      Delete
  17. #include
    using namespace std;
    int main()
    {
    char a='A';
    for(int i=1;i<=4;i++)
    {
    for(int j=1;j<=i;j++)
    {cout<<a;a++;}
    cout<<endl;
    }
    return 0;
    }

    ReplyDelete
  18. E
    DE
    CDE
    BCDE
    ABCDE
    BCDE
    CDE
    DE
    D

    CAN SOMEONE MAKE THIS PATTERN?

    ReplyDelete
  19. This comment has been removed by the author.

    ReplyDelete
  20. Replies
    1. pattern mein A, C ke upper h aur second line ke F ke upper se start h

      Delete
  21. Plz help me to print the following pattern
    A
    12
    abc
    ABCD
    12345
    abcdef

    When n=6

    ReplyDelete
  22. Hello,
    I m Really looking forward to read more. Your site is very helpful for us .. This is one of the awesome post i got the best information through your site and Visit also this site
    https://sattakingdarbar.com/
    Really many thanks

    ReplyDelete
  23. what is pattern for this

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

    ReplyDelete
  24. I need a pattern as
    1 2 3 4 5 4 3 2 1
    1 2 3 4 A 4 3 2 1
    1 2 3 A B C 3 2 1
    1 2 A B C D E 2 1
    1 A B C D E F G 1

    ReplyDelete

  25. E
    DE
    CDE
    BCDE
    ABCDE
    i need pattern like above

    ReplyDelete
  26. *********
    ****bb****
    ***bbbb***
    **bbbbbb**
    *bbbbbbbb*
    **bbbbbb**
    ***bbbb**
    ****bb****
    **********

    ReplyDelete
  27. Replies
    1. i think this could help u
      #include
      void main()
      {
      int i,j;
      for(i=1;i<=4;i++)
      {
      for(j=1;j<=4;j++)
      {
      if (i==j)
      printf("a");
      else if (i>j && (i+j)%2 != 0)
      printf("*");
      else if (i>j && (i+j)%2==0)
      printf("a");
      else
      printf(" ");
      }
      printf("\n");
      }
      }

      Delete
  28. i require this pattern program
    abcdefgfedcba
    abcdef fedcba
    abcde edcba
    abcd dcba
    abc cba
    ab ba
    a a

    ReplyDelete
  29. 1
    6 2
    10 7 3
    13 11 8 4
    15 14 12 9 5

    ReplyDelete
  30. Sir,your blog is not working anymore.Do something

    ReplyDelete
    Replies
    1. Best blog for C Programming ... https://cprogrammingworld123.blogspot.com/

      Delete
  31. A B C D E D C B A
    A B C D D C B A
    A B C C B A
    A B B A
    A A

    PLEASE HELP ME TO SOLVE THIS

    ReplyDelete
  32. Pattern in c . please help
    ABCDE
    FGHI
    JKL
    MN
    O

    ReplyDelete
  33. Help me to print this pattern
    ABCDE
    ABCDABC
    ABA

    ReplyDelete
  34. plz print this result Write a C program to print the following pattern:
    ABCDEFG
    ABCDE
    ABC
    A

    ReplyDelete
  35. Write a C program to print the following pattern:
    ABCDEFG
    ABCDE
    ABC
    A print this result not above one

    ReplyDelete
  36. bro thanx for share the pattern code it's helpfull for us and thanks again for explanation #Madhur bazar

    ReplyDelete
  37. Önemli giriş adreslerine buradan ulaşabilirsiniz.
    betturkey giriş
    betpark giriş
    USR

    ReplyDelete
  38. bro thanx for share the pattern code it's helpfull for us and thanks again for explanation
    Best NDT Training Institute in India

    ReplyDelete
  39. 🕰️ Discover the World of Watches with These Informative Websites! 🕰️

    If you have a passion for watches like I do, you're in for a treat! I've come across some fantastic websites that cater to all things horology, and I can't wait to share them with you. These websites are not only well-designed but also packed with insightful and engaging content that every watch enthusiast would love to explore.

    Jordan Writes 📝 - 🌟🌟🌟🌟🌟
    If you want to stay on top of the latest watch trends and get hands-on reviews, look no further! Their article on the 10 Best Watch Blogs to Follow in 2023 is a gem for watch enthusiasts seeking valuable insights.

    Daily Business Post 📰 - 🌟🌟🌟🌟🌟
    A comprehensive guide that every watch-loving gentleman should read! 10 Types of Popular Watches Every Man Needs to Know is an ultimate guide to help you make a statement with your timepiece.

    Pashudhanjsnk 🌐 - 🌟🌟🌟🌟🌟
    If you crave variety and diversity in watch brands, you'll find it here! Explore their article highlighting the Top 9 Watch Brands from Different Countries, and you might discover your new favorite brand.

    Tech Bullion 💡 - 🌟🌟🌟🌟🌟
    Journey through time with this enthralling read on the History and Evolution of Dial Watches. The evolution of watches is beautifully documented here, making it a must-read for history buffs.

    Weekly News Time 🗞️ - 🌟🌟🌟🌟🌟
    Delve into the world of craftsmanship and innovation with their list of the 10 Best Watch Makers in the World. A true celebration of horological excellence!

    Blogging Mint 💻 - 🌟🌟🌟🌟🌟
    Are you looking for tips to find your perfect timepiece? Check out their article on Tips for Buying Timeless Watches, and you'll be well-equipped for your next watch purchase.

    Original News Break 🗞️ - 🌟🌟🌟🌟🌟
    Dive watches for every occasion! Whether you're hitting the pool or exploring the ocean, this article has got you covered with the best options.

    Gonobuddy 🤝 - 🌟🌟🌟🌟🌟
    Seeking unique dive watch alternatives? Look no further! Their article on 10 Unbelievably Awesome Alternatives to Famous Dive Watches is a treasure trove of exciting options.

    NYB Post 🗞️ - 🌟🌟🌟🌟🌟
    Another excellent resource for alternative dive watches! Their list of 10 Unbelievably Awesome Alternatives to Famous Dive Watches will inspire your next adventurous choice.

    Tech Time Tools ⏱️ - 🌟🌟🌟🌟🌟
    Dive into a comprehensive comparison between Citizen Dive Watches and their competitors! The article provides valuable insights to aid in your decision-making process.

    🎉 Dive into these websites and embark on an incredible journey through the world of watches! 🎉

    ReplyDelete
  40. I really enjoyed this bloag..especially specific poitns..nice blog!! Madhur Satta Matka

    ReplyDelete