C Program to Reverse a Number using Recursion
The program uses recursion to reverse an input number. A function is recursively called to extract each digit from the number and place it in… Read More »C Program to Reverse a Number using Recursion
The program uses recursion to reverse an input number. A function is recursively called to extract each digit from the number and place it in… Read More »C Program to Reverse a Number using Recursion
The program to identify a quadrilateral read inputs – length of sides and angles made by the quadrilateral shape and prints the shape name as… Read More »C Program To Identify A Quadrilateral
With the law of sine, you can find any unknown angle of a given triangle or the length of a particular side of a triangle… Read More »C Program For Law Of Sine Problems
Previous Next A stack is an abstract data structure where elements are pushed and deleted from only one end. We call this top of a… Read More »C Program to Implement Stack using Linked-List
Previous Next A stack is a common data structure used in many applications. It is an abstract data type defined not by its data type,… Read More »C Program to Implement a Stack
The program computes the area of triangle once he user enters input values for the triangle. The inputs for the triangle are the length of… Read More »C Program to find Area of a Triangle
The C program to count the frequency of vowels, consonants and white spaces for a given word or a sentence is a string manipulation program.… Read More »C Program To Count Frequency Of Vowels
The C program to display student results demonstrates the working of conditional statement in the C language. The program takes student’s marks in percentage (%)… Read More »C Program To Display Student Results
The program computes Nth Fibonacci number using a technique called recursion and prints the results. A recursion is the ability of a procedure or function… Read More »C Program To Compute Nth Fibonacci Number
The best way to learn C programming is by practicing lots of example programs.