what is difference b/w extern & volatile variable??
Answer Posted / antonio leite
extern states that a variable is referenced in a module but
is declared in another module. This makes the linker not
generate an error/warning when the extern variable is
referenced but wait till the declaration is stated in a
module.
volatile states that the value of a variable can be changed
anywhere in the code. This is used by the optimizer to know
that a piece of code must not be optimized when a volatile
variable is found. For example, when a variable is changed
by a interrupt timer it must be declared volatile. The code
seems to be always true because Timer_xpto seems to be
always > 0. If the code is optimized, the if would simply
disapper from the code, but this is not what the programmer
wants, so declare
extern volatile unsigned long Timer_xpto;
so that the compiler will never optimize the code below.
Timer_xpto = 100;
do something
if (Timer_xpto > 0 )
{
do any other thing
}
Here extern is stating that the variable is declared in
other module and volatile that the code where the
Timer_xpto appears must not be optimized.
See http://www.eetimes.com/discussion/programming-
pointers/4025609/Place-volatile-accurately
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
What the different types of arrays in c?
Describe newline escape sequence with a sample program?
What is graph in c?
What is the use of printf() and scanf() functions?
Why & is used in c?
What are nested functions in c?
What is meant by errors and debugging?
Where does the name "C" come from, anyway?
When should the volatile modifier be used?
write a progrmm in c language take user interface generate table using for loop?
What is volatile variable how do you declare it?
What is the general form of #line preprocessor?
Explain how can you check to see whether a symbol is defined?
Tell us something about keyword 'auto'.
What is the difference between #include