Answer Posted / satish
if a variable is declared as volatile ,optimization is not
done regarding to that variable.If the value is modified
many number of times,each time CPU goes and reads from main
memory rather than cache memory.
The usage of this can be
understood clearly only at kernel level but not at
application level.
| Is This Answer Correct ? | 36 Yes | 2 No |
Post New Answer View All Answers
write a C program: To recognize date of any format even formats like "feb-02-2003","02-february-2003",mm/dd/yy, dd/mm/yy and display it as mm/dd/yy.
how to find anagram without using string functions using only loops in c programming
What is the size of array float a(10)?
What is function in c with example?
What is bss in c?
In which language linux is written?
What is the usage of the pointer in c?
What is the use of sizeof?
How is = symbol different from == symbol in c programming?
What is difference between && and & in c?
What are formal parameters?
What is the c value paradox and how is it explained?
What will be the outcome of the following conditional statement if the value of variable s is 10?
What is the g value paradox?
What is null pointer in c?