HomeC Programming
C Programming
Showing 1 - 20 of 146 results
This C program finds the Greatest Common Divisor (GCD) of two given numbers. Problem Statement Write a C program that...
- C Programming
- December 3, 2024
This C program calculates the roots of a quadratic equation of the form ax^2 + bx + c = 0....
- C Programming
- December 2, 2024
This C program allows you to find the length of a linked list, which is the number of nodes present...
- C Programming
- December 2, 2024
This C program finds the first and last occurrence of a target character in a given string and displays their...
- C Programming
- December 1, 2024
In this C program, we will calculate the power of a number using the exponentiation operator. We will take the...
- C Programming
- December 1, 2024
Floydโs Triangle is a triangular number pattern named after Robert Floyd. It is a right-angled triangle where the numbers are...
- C Programming
- December 1, 2024
This C program performs cyclic permutation (rotation) of the elements in an array to the right. Cyclic permutation is an...
- C Programming
- December 1, 2024
In this C program, the introduction section provides a brief overview of the purpose of the program. It states that...
- C Programming
- November 30, 2024
This C program calculates the power of a given number raised to a specified exponent using a loop. Problem Statement...
- C Programming
- November 30, 2024
This C program converts a binary number to its octal equivalent. Problem statement The program takes a binary number as...
- C Programming
- November 29, 2024
This C program converts a binary number to its corresponding Gray code using iterative methods. Gray code, also known as...
- C Programming
- November 29, 2024
This C program calculates the value of sin(x) using the Taylor series expansion. The Taylor series expansion is a mathematical...
- C Programming
- November 29, 2024
In this post, you will learn about the C program that takes two strings as input and determines whether they...
- C Programming
- November 29, 2024
In programming, it is often necessary to convert characters from lowercase to uppercase and vice-versa. In this program, we will...
- C Programming
- November 29, 2024
This C program demonstrates addition using bitwise operators. Bitwise operators are efficient for performing arithmetic operations at the binary level....
- C Programming
- November 29, 2024
Intro This C program calculates the volume and surface area of a cylinder using its radius and height. It demonstrates...
- C Programming
- November 28, 2024
This C program calculates the area of a circle using its radius. Problem Statement C Program to Find the Area...
- C Programming
- November 28, 2024
This C program finds the largest and smallest possible words, which are palindromes, from a given input sentence. Problem Statement...
- C Programming
- November 28, 2024
This C program calculates the length of a given string. Problem Statement Write a program that calculates the average of...
- C Programming
- November 27, 2024
This C program calculates the normal and trace of a given matrix. It prompts the user to enter the size...
- C Programming
- November 27, 2024