Answer Posted / manish
as on compiler optimize the code. and it take the variable
first in cache and then in resisters.
so in volatile variables what the value is stored at first
time it will be stored in resister but when u want to
change the values of that volatiles variables.it will not
change.
| Is This Answer Correct ? | 3 Yes | 6 No |
Post New Answer View All Answers
Explain what are preprocessor directives?
count = 0; for (i = 1;i < = 10; i++);count = count + i; Value of count after execution of the above statements will be a) 0 b) 11 c) 55 d) array
What would the following code segment printint k = 8;docout << "k = " << k << " ";while k++ < 5; a) 13 b) 5 c) 8 d) pointers
Are global variables static in c?
What is 2c dna?
What’s a signal? Explain what do I use signals for?
What is #line in c?
What are terms in math?
What functions are used for dynamic memory allocation in c language?
Explain how can I avoid the abort, retry, fail messages?
How can I access an I o board directly?
Explain data types & how many data types supported by c?
What is output redirection?
what does static variable mean?
main() { printf("hello"); fork(); }