C Programming

Showing 61 - 80 of 146 results
This C program demonstrates how to reverse a stack using recursion. A stack is a linear data structure that follows...
This C program checks whether a given number is an Armstrong number or not, where the number is entered by...
This C program calculates and displays the transpose of a given matrix. The transpose of a matrix is obtained by...
Tic Tac Toe is a classic paper-and-pencil game played on a 3ร—3 grid. The objective of the game is to...
In this C program, we first provide an introduction to the converter. Then we state the problem, which is to...
The strpbrk() function is a standard library function in the C programming language that is used to search for the...
This C program solves the Magic Squares puzzle, a mathematical challenge where a square matrix is filled with distinct positive...
This C program prints Pascalโ€™s triangle based on the number of rows entered by the user. Pascalโ€™s triangle is a...
This C program first introduces itself as a โ€œFahrenheit to Celsius Converterโ€. It then provides a brief problem statement, explaining...
This C program calculates the determinant of a square matrix provided by the user. Problem statement Given a square matrix...
This C program calculates the mean, variance, and standard deviation of a set of numbers. These statistical measures are commonly...
This C program finds and prints all possible subsets of a given string. A subset of a string is a...
The Tower of Hanoi is a classic mathematical puzzle that involves moving a stack of disks from one peg to...
This C program calculates the area of a trapezium based on the userโ€™s input of the lengths of its two...
This C program demonstrates how to print a semicolon without using the semicolon character itself. Problem Statement Write a C...
This C program finds the Least Common Multiple (LCM) of two given numbers. Problem Statement Write a C program that...
In this program, we will learn how to create a file in C and store information in it. File handling...
This C program determines whether a given year is a leap year or not. A leap year is a year...
This C program shows how you can to Find Area of a Right Angled Triangle. Problem statement Write a C...
This C program illustrates the computation of the height of a binary tree using a recursive algorithm. In computer science,...