C-Programming

Menu-Driven Program in C using Switch Case [New]

In this post, we will make many menu-driven programs for different tasks, like a program to calculate the area of different shapes, perform the given…

Calculator program in C using Switch Case [New]

In this Calculator program in C using a switch case, we will perform arithmetic operations (i.e., addition, subtraction, multiplication, and divisio…

Palindrome Program in C [New]

It is a program to check whether the number is a palindrome or not in the c language. We will make it using for loop, a while loop, and functions. …

String Palindrome Program in C using for loop [New]

In this post, we will make a String Palindrome Program in C using for loop. We will check whether the given string is palindrome or not. String Pali…

C Program for Multiplication of Matrix using 2D array [New]

In this C Program for Multiplication of Matrix using the 2D array, we will multiply two matrices A and B, e.g., C=A*B; then, we print matrix C. The…

Prime Number Program in C using for loop

In this post, we will make the Prime number program in c. It will help us to check whether the number is prime or not. Prime number: A number no…

Pattern In C Programming | C Program To Print Simple Pattern

In this program, we are going to make pattern in c programming using loops. It gives us a better understanding of the implementation of loops. P…

Matrix Program in C using Array

Here all the Matrix programs in c using array are available. This program will add two matrices, subtract two matrices, and multiply two matrices. …

Linear Search Program in C with Time complexity [New]

In this Linear search program in c, we will understand how to search elements in an array using for loop Table Of Contents L…

Factorial Program in c using for loop

Factorial program in c: In this program, we are going to find the factorial of any number using for loop.  Enter a number: 8 Factorial of 8 is 4032…

Learn c programming online for free

Table Of Contents for loops, while loops and if statements then come variables then you have functions and arrays so these like a k…

C program to print numbers using for loop

We will print natural numbers from 1 to 10 using for loop. We do not want to print comma at last so we have to use an if-else statement or condi…

Odd and Even Numbers Program in C

In this program, we will check whether the number entered by the user is odd or even. First, we make a C program to check whether the number is odd…

C Program to Print X Pattern

In this post, we are going to make a c program to print the “X” number pattern and also a c program to print the “X” star pattern. We will make a C p…

C/C++ program to check Armstrong number

In this example, we are going to make a C program to check Armstrong's number. For this, we add the cubes of all the digits of the number entere…