Header Ads

Pointer

10:39 AM 0

POINTER Consider the declaration, Int i=3; This declaration tell the C compiler to: ·         Reserve space in memory to hol...

Swapping Numbers

12:19 PM 0

Swapping without using third variable in C? swapping means altering the values Swapping : - Swap x=3 and y=4  after swapping x=4 and ...

Even and Odd checking

11:56 AM 0

Even and Odd checking in C? Even numbe r:- Number divisible by 2 is known as even number. Odd number :-Number not divisible by 2 is ...

Palindrome Checking

10:42 AM 0

Palindrome Checking in C Palindrome :     A  palindrome number  is a number such that if we reverse it, it will not change. For example ...

FUNCTIONS

1:11 PM 0

Functions Functions in c? A function is a block of code that has a name and it has a property that it is reusable i.e. it can ...

Switch case in C

2:59 PM 0

SWITCH CASE Control statement that allow us to make a decision from the number of choices is called a switch , or more corre...