C Programming

C Program to Find Total of Even Integers

C-If Statement with Example

We can see like most other languages; C uses the keyword if to implement the decision control instruction. The general form of if statement looks like below example.

if (this condition is true)
execute this statement;

The keyword C if Read More

C Program to Find Total of Even Integers

Functions in C Programming with example

A function is a module or block of program code which deals with particular task. Making C functions is a way of isolating one block of code from other independent blocks of code. Every C Program consists of one or … Read More

C Program to Find Total of Even Integers

C Comments

C programming Comments are way of inserting remarks and reminders into a program without affecting its content. C Comments do not have a fixed place in program: the compiler treats them as though they were white space or blank characters … Read More

C Program to Find Total of Even Integers

C Libraries – Quick Guide

Everyone knows core of the C language is small and very simple to use, and special functionality is provided in the form of libraries of ready-made functions. Some of C libraries are provided for you, giving you access to many … Read More

C Program to Find Total of Even Integers

C Variable With Examples

C variable is a sequence of program code with a name (also called its identifier). A name or identifier in C can be anything from a single letter to word. The name of variable must begin with an alphabetic letter … Read More

C hello world program

First C “Hello World!” Program

Everyone knows “Hello World” program is the first step towards learning any programming language and also one of the simplest program you will learn in C Programming Language.

Let start write the first C hello world program,

#include <stdio.h>
Read More