Drop Down MenusCSS Drop Down MenuPure CSS Dropdown Menu

Tuesday, March 10, 2015

What is volatile ?

It is a qualifier.  it is also a keyword which is used to declare a variable as a volatile i.e. the value of the variable can be change at any time by some external programs or sources.

Syntax:
volatile data_type variable;
Ex:
volatile int count;


No comments:

Post a Comment