C Programming

C is a general-purpose, middle-level, compiler-based, and procedure or function-oriented structured programming language. It was developed by Dennis Ritchie at Bell Laboratories in 1972. The main purpose of developing C was to write operating systems.

Related Pages

C Program for Multiplication table

C Program for Multiplication table | In mathematics, a multiplication table is a mathematical table used to define a multiplication operation for an algebraic system. Here we will develop different C program for Multiplication table using for loop, using while loop, using do-while loop, from 1 to 10 and from 1 to N. Multiplication table […]

C Program for Multiplication table Read More »

Factorial Program in C

In mathematics, the factorial of a positive integer n, denoted by n! It is the product of all positive integers less than or equal to n. For example:- The factorial of 4= 4! = 4*3*2*1 or 1*2*3*4 = 24 Here we will write the Factorial program in C programming language. Factorial (n) = 1 *

Factorial Program in C Read More »

GCD and LCM Program in C

LCM and HCF program in C | GCD and LCM program in C | HCF and LCM program in C The highest common factor (HCF) of two or more numbers is the greatest number that divides each of them exactly. Greatest Common Measure(GCM) and Greatest Common Divisor(GCD) are the other terms used to refer to

GCD and LCM Program in C Read More »

Simple Calculator Program in C

Here, we will create a simple calculator program in C which will perform basic arithmetic operations like addition, subtraction, multiplication, division, and remainder depending on the input from the user. Users will have the choice to choose the operation. If the user chooses the wrong operation then he/she will get an error message. Prerequisites for

Simple Calculator Program in C Read More »