Answer Posted / kishor narayan
Volatile qualifier indicates to the compiler that the
variable can be modified at any stage of the program
execution. This can happen even if the region of code being
executed might not have any access to the variable in
question. In that sense, Volatile qualifier does the
opposite of the Const qualifier.
@Vignesh1988i -> Volatile qualifier does not assign any
garbage value to the variable.
| Is This Answer Correct ? | 15 Yes | 0 No |
Post New Answer View All Answers
Is it acceptable to declare/define a variable in a c header?
Explain the use of bit fieild.
What is the use of ?
Apart from dennis ritchie who the other person who contributed in design of c language.
Do pointers need to be initialized?
What is the modulus operator?
What is abstract data structure in c?
What is the function of multilevel pointer in c?
How can you find the day of the week given the date?
What are the uses of null pointers?
What does. int *x[](); means ?
Are pointers integer?
What is struct node in c?
What is the difference between local variable and global variable in c?
What does typedef struct mean?