Answer Posted / srividya
A volatile variable is variable whose value can change with
out the knowledge of the compile. so the data access
optimization is lost.
These sort of variable are used normally accessing a global
variable between two threads.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What does sizeof return c?
please send me the code for multiplying sparse matrix using c
What are categories used for in c?
what is the height of tree if leaf node is at level 3. please explain
Is it better to bitshift a value than to multiply by 2?
How do you declare a variable that will hold string values?
What is binary tree in c?
What is array of structure in c?
i = 25;switch (i) {case 25: printf("The value is 25 ");case 30: printf("The value is 30 "); When the above statements are executed the output will be : a) The value is 25 b) The value is 30 c) The value is 25 The value is 30 d) none
What is the process to create increment and decrement stamen in c?
What is a c token and types of c tokens?
main use of recursive function a) processing speed high b) reduce program length/reduce repeated statements c) if you do not, use iterative methods like, for, while or do-while d) all the above
How can I write a function that takes a format string and a variable number of arguments?
Explain the difference between null pointer and void pointer.
hw can we delete an internal node of binary search tree the internal node has child node..plz write progarm