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
What is the difference between a free-standing and a hosted environment?
How do you search data in a data file using random access method?
What are the application of void data type in c?
What are categories used for in c?
What are the two types of functions in c?
Why do we use & in c?
What is structure of c program?
What is external variable in c?
What are the 4 types of organizational structures?
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
Explain what are compound statements?
What is scanf_s in c?
What is struct node in c?
What is calloc() function?
In c programming typeing to occupy the variables in memory space. if not useing the variable the memory space is wasted.ok, how to avoid the situation..? (the variable is used & notused)