Category Archives: C Language

Relation operator in C

Relation operator-:  we obtain compare two quantities and depending on their relation.Take certain decision For example- we make compare the age of 2 person or the  price of two items, and so on.These comparison can be done with the help of Relational operators. we have already used  the symbol is greater(<) than meaning less than… Read More »

arithmetic operators in C

arithmetic operators C-:”C” provide all the basic arithmetic operators the operator + – multiplication division these are work for the same way as they do in other language these can operate on any built in data type allowed in C .the unary   minus operator in effect multiplies its single operate by -1 therefore a number preceded… Read More »

Operators in C

operator in C language:- C support a rich set of built in operator we have already used several of them such as equal to add(+)Minus(-)  multiplication(*) and division(/) operator is a symbol that tells the computer to perform certain mathematics or logical manipulation. operators are used in program to manipulate data and variables. they usually form… Read More »

CONSTANTS IN C Language

● CONSTANTS-: Constants are like a variable that don’t change during execution. C refer to fixed value that do not change during the execution of a program. There are two two types of constants in c language : 1. Numeric constants ◆ Integer constants ◆ real constants 2. Character constants ◆ single character constants ◆… Read More »

TOKENS IN C language

Tokens in c programming language-: C  language provide many types tokens. In this  passage passage of text individual words and punctuation marks are called tokens. Similarly in a C program are the program the smallest individual units are known as C tokens. In the C language  has 6 types of tokens. C programs are written using… Read More »

History of C Programming language

History of C -:  “C” seems a strange name for a programming language.But this strange name sounding language is one of the most popular computer languages today because it is a structured,high level, machine independent language. it allows software developer to develop programs without worrying about the hardware platform where they will be implemented. The root… Read More »