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 program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.
the maximum length of a character constant can be a) 1 character b) 8 characters c) 256 chaacters d) 125 characters
What are local static variables? How can you use them?
How can I make sure that my program is the only one accessing a file?
Where are the auto variables stored?
What is difference between class and structure?
Can I use base-2 constants (something like 0b101010)? Is there a printf format for binary?
Explain union. What are its advantages?
What does d mean?
What do you mean by recursion in c?
Explain the difference between call by value and call by reference in c language?
How to define structures? ·
Is printf a keyword?
What is int main () in c?
Differentiate between a structure and a union.