what is volatile in c language?
Answer Posted / hareesha chikkapattanager parv
It is nothing but telling to compiler that this variable
will change its value at anytime by hard or outside the
controll of the program and compiler should not make any
assumption or optimize about this variable.
| Is This Answer Correct ? | 46 Yes | 5 No |
Post New Answer View All Answers
What is the purpose of void in c?
why arguments can generally be passed to functions a) sending the values of the arguments b) sending the addresses of the arguments c) a & b d) none of the above
Write a program for Overriding.
Why doesnt long int work?
Tell us something about keyword 'auto'.
When reallocating memory if any other pointers point into the same piece of memory do you have to readjust these other pointers or do they get readjusted automatically?
What does != Mean in c?
Function which gives a pointer to a binary trees const an integer value at each code, return function of all the nodes in binary tree.?
What is the basic structure of c?
the process of defining something in terms of itself is called (or) in C it is possible for the functions to call themselves. A function called a) nested function b) void function c) recursive function d) indifinite function
How can I swap two values without using a temporary?
What is volatile variable in c?
Explain with the aid of an example why arrays of structures don’t provide an efficient representation when it comes to adding and deleting records internal to the array.
Is int a keyword in c?
What is the difference between union and anonymous union?