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

Leap Year Program in C

Here we will write the leap year program in C language. We can use if-else, nested if-else, or switch case statement for this problem. A year is called leap year if the year is divisible by four, except for the years which are divisible by 100 but not divisible by 400. Therefore, the year 2000

Leap Year Program in C Read More »

Even Odd Program in C

In this post, you will learn even odd program in the C language. We will write different C programs to check or find even or odd numbers. Even Number Program in C First, you should know how to write a C program to find even numbers. If the number is divisible by 2 then it

Even Odd Program in C Read More »

Display ASCII Value in C

In this program, we will find ASCII value in C. C program to display the decimal value or ASCII value of a character. C program to find ASCII value in a given Range. Prerequisites for writing all below programs:- Data types in C Programming language Operators in C Programming language Output formatting using printf() in

Display ASCII Value in C Read More »