C Compilation Process

A C program has an extension .c which is not a runnable program, it’s just the source code written by a programmer that needs to be converted to…

C Program Structure

Every programming language has a style of writing code or also called the structure of the program. Similarly, C Programs also have a structure to follow while writing…

C Basic Syntax

Before riding the roller coaster of the C Programming journey let’s first get familiar with the basic syntax of a C program. Below is the basic program which…

C Program To Find if Given Number is Odd or Even

First of all, let’s understand what is odd and even. Odd Number Odd numbers are those which are not divisible by 2 or we cannot split them in…

Sum of two numbers in C

In this example, we will ask users to input two integer numbers and display the sum of these numbers. To understand this example you should have a basic…

C Environment Setup

It is very easy to get started with C programming, in fact, you don’t even need to set up an environment to run C code there are lots…

C Introduction

C is a general-purpose programming language that was originally developed by Dennis Ritchie at Bell Labs in the early 1970s. It is a structured, procedural language that is…