In C, we can use for loop, while loop or do-while loops to print different number, alphabets or star patterns programs. The following programs demonstrate the same by creating triangle, rectangle or other patterns. You may also like : Java Character Pattern Programs Coding Interview Questions for Java Programmers Java Tutorial Pattern …
Continue reading 20+ C Pattern ProgramsC

In this article, we will write an interactive C program that reads a person’s full name and prints it in abbreviated form(first initial, then middle initial and then last name). Example : Output : Enter full name in this format (first middle last): Harry James Potter Abbreviated name is H. J. Potter Popular Articles …
Continue reading C : Interactive program to print person’s name in abbreviated form
In this article, we write a program in c language to exchange the entered two numbers by using pointers. Example : Exchange 2 numbers using pointers(call by reference) Output: Enter the value of first number, num1 10 Enter the value of second number, num2 4 Before Swapping num1 = 10 num2 = 4 After …
Continue reading C : Swap two numbers using pointersThis article covers 10 Number Pattern Programs in C language. Pattern 1 Enter a number between 1 to 9 : 4 1 121 12321 1234321 Pattern 2 1 22 333 4444 55555 Pattern 3 1 12 123 1234 12345 1234 123 12 1 Pattern 4 12345 1234 123 12 1 1 12 123 …
Continue reading 10 different Number Pattern Programs in C languageFor C/C++ programming you can use IDEs like Visual Studio and Eclipse. While downloading and setting up Visual Studio is straight forward, the eclipse installation has some manual steps. For Eclipse, you would need to download C/C++ CDT. The C/C++ Development Toolkit (CDT) is a collection of Eclipse-based features that provides the capability to create, …
Continue reading How to setup Eclipse for C/C++ programming in Windows with MinGW