Answer Posted / rekha_sri
* A variable should be declared volatile whenever its value
could change unexpectedly.
* A volatile qualifier must be used when reading the contents
of a memory location whose value can change unknown to the
current program.
* A volatile qualifier must be used for shared data modified
in signal handlers or interrupt service routines.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What are type modifiers in c?
What is a stream in c programming?
What do the functions atoi(), itoa() and gcvt() do?
Why does notstrcat(string, "!");Work?
How do you write a program which produces its own source code as output?
Is calloc better than malloc?
What is "Duff's Device"?
What does == mean in texting?
How to Throw some light on the splay trees?
what are # pragma staments?
we need to calculating INCOME TAX for the person. The INCOME TAX is as follows:- First $10000/- of income : 4% tax Next $10000/- of income : 8% tax Next $10000/- of income : 11.5% tax above $10, 00,00/- : 15% tax What is the Solution of this Question ?
What is the difference between text and binary i/o?
What is the sizeof () a pointer?
What are the advantages and disadvantages of a heap?
write a program using linked list in which each node consists of following information. Name[30] Branch Rollno Telephone no i) Write the program to add information of students in linked list