Increment and Decrement

The increment operator is used to increase the value of a variable by 1. It is denoted by by symbol ++. It is a unary operator and work with single variable.
The increment operator cannot increment the value of constants and expressions.

What are Identifiers and Variables

Identifiers are the names used to represent variable , constant , types , functions and label in the program. Identifier is an important feature of all computer languages. A good identifier name should be descriptive but short.

What is Keyword or Reserved Words In C Language

Keyword is a word in C language that has predefined meaning and purpose. The meaning and purpose of keyword is defined by the developer of the language.

Types Of Errors Which Can Occur In C Program

Different types of errors can occur while writing a C program. These errors include the syntax errors, logical errors and run-time errors. These types of errors should be remove from the C program for this purpose i also advise you :-

Basic Structure Of C Program Concept 02


The format of writing a program is structure of c program. The basic structure of c language is flexible. It increase the power of the language. It consists of the following parts :-

Let's Start With First Concept 01

First of all you have to start your program with

#include<stdio.h>
#include<conio.h>
void main()
{

Program body

}

History Of C Language

The C is a popular high level language. It was developed by Denis Ritchie at AT&T Bell Laboratories in 1972. C language was derived from an early language named B language.