C Program To Check An Armstrong Number
This C program checks an input number whether it is an Armstrong number on not and prints the results. An Armstrong number is special number… Read More »C Program To Check An Armstrong Number
This C program checks an input number whether it is an Armstrong number on not and prints the results. An Armstrong number is special number… Read More »C Program To Check An Armstrong Number
This program uses a division operator on two input numbers. The output is a quotient and a remainder is printed to the console. We compiled… Read More »C Program To Find Reminder And Quotient
The C program to find permutation and combination solves 4 different types of problems. The permutation problems are arrangement problems and the combination problems are… Read More »C Program To Find Permutation And Combination
This is a simple program to find the Greatest Common Divisor (GCD) of two given positive numbers. We wrote and compiled the program on Dev-C++… Read More »C Program For GCD Of Two Numbers
The program to compute cosine series is based on the mathematical concept of sequences and series – particularly power series. The program is compiled using… Read More »C Program To Compute Cosine Series
The standard deviation is a measure to understand how much data deviates from the mean value. The data may be grouped or non-grouped where non-group… Read More »C Program To Compute Standard Deviation For Non-Grouped Data
This program finds the average age of a person using an array. The array which stores a list of age is passed on to a… Read More »C Program To Find Average Age
C programming language has several predefined macros. In this article we will demonstrate the usage of two important macros. Before you begin with the example,… Read More »C Program To Output Current Date And Time
C programming allows to read or write files. In this program, a user will enter some text which will be stored in a file using… Read More »C Program To Write A File
This program receive two numbers and compute the sum of geometric progression. The program implements the geometric progression and output the results when it receives… Read More »C Program To Compute Sum Of Geometric Progression