Social Icons

Showing posts with label C. Show all posts
Showing posts with label C. Show all posts

10 July 2012

0 Associavilty of operators in C

When an expression contains two operators of same precedence the tie between them is settled using the associativity of operators. Type...

0 Hierarchy and Associativity of operators

The priority or precedence in which the operations in an arithmetic statement are performed is called the hierarchy of operations. And w...

0 The Conditiona operator in C

C ternary operator is sometimes called conditional operator or ternary operator because it is a shorthand of combination of the if-else a...

0 The ! operator in C

The ! is the logical NOT operator. This reverses the result of the expression it operates on.For example, if expression evaluates to tru...

0 Else-if statement in C

else if condition is nothing but this this a way to arrange the else with the if that follows it.Every else is associated with ...

0 External Storage Class in C

The feature of a variable defined to have a external storage class are as follows : A external variable is declared by using  keyword e...

0 Nested if-else statements in C

Nested if-else It is perfectly all right if we write an entire if-else construct within either the body of the if statement or the body...

0 The if-else statement in C

The if statement by itself will execute the single statement or a group of statement when the expression following ‘if’ evaluates true...

0 If statement in C

Like most languages C uses the keyword ‘if’ to implement the decision control instruction. The general form of the ‘if’ statement is ...

9 July 2012

0 Static Storage Class

The feature of a variable defined to have a static storage class are as follows : A static variable is declared by using  keyword stati...
Related Posts Plugin for WordPress, Blogger...