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

Tricky C Programs

There are many tricky C programs that are regularly asked. You should know those tricky C programming questions and their solutions. Tricky C programs: Arithmetic operations In arithmetic operations, we will write the program for basic arithmetic operations like addition, subtraction, multiplication, and division without using generally used operators. These all operations are done on

Tricky C Programs Read More »

Input Using Scanf Function in C

The scanf is the standard input formatting function in the C language. It is used to read all types of general data such as integers, floating-point numbers and characters, and strings. This function takes a text stream from the keyboard, extracts and formats data from the stream according to a format control string, and stores

Input Using Scanf Function in C Read More »

C Program Using Functions Example

Here we will develop the C program using functions. We will write user-defined functions to solve the problems. After learning the introduction to function in C and User-defined function in C, we are able to build some user-defined functions to perform some mathematical operations like finding the area of a rectangle, circle, cube of the

C Program Using Functions Example Read More »