what is the use of defining a variable as volatile..

Status
Not open for further replies.

sivamit

Full Member level 4
Joined
Dec 1, 2005
Messages
201
Helped
20
Reputation
40
Reaction score
14
Trophy points
1,298
Activity points
2,651
Please give a real time exmple..


Thanks,
Siva
 

A volatile variable is one that can be changed outside the program flow. For instance, an input port on a micro or a global variable that is changed in an interrupt routine.
A compiler will optimise code so that sometimes it puts a variable in a reg and asumes it hasn't changed.
The volatile directive tells the compiler that the value of the variable must be read before using it.
 

Status
Not open for further replies.

Similar threads

Cookies are required to use this site. You must accept them to continue using the site. Learn more…