Answer Posted / harish
volatile variable tells the compiler not to optimize the
code at run time.
example:
volatile int a = 20; // variable a is declared as volatile.
For more information check this out...
http://www.programmersheaven.com/articles/pathak/article1.htm
| Is This Answer Correct ? | 5 Yes | 8 No |
Post New Answer View All Answers
What is the difference between volatile and const volatile?
What are the types of c language?
What is use of #include in c?
What are the application of c?
What is define c?
Differentiate between null and void pointers.
What are the different data types in C?
Write a program to print “hello world” without using semicolon?
Difference between goto, long jmp() and setjmp()?
Why is #define used?
How can I find out if there are characters available for reading?
What are the salient features of c languages?
Explain enumerated types in c language?
How do you convert strings to numbers in C?
How can I determine whether a machines byte order is big-endian or little-endian?