What is an volatile variable?

Answer Posted / priya

In computer programming,a variable or object declared
with the volatile keyword may be modified externally
from the declaring object. Variables declared to be
volatile will not be optimized by the compiler
because the compiler must assume that their values
can change at any time.

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What will the code below print when it is executed?   int x = 3, y = 4;         if (x = 4)                 y = 5;         else                 y = 2;         printf ("x=%d, y=%d ",x,y);

1329


Is it possible to pass an entire structure to functions?

530


What is c programing language?

582


What is a pointer variable in c language?

616


write a programe to accept any two number and check the following condition using goto state ment.if a>b,print a & find whether it is even or odd and then print.and a

1428






plz let me know how to become a telecom protocol tester. thank you.

1722


What are types of structure?

584


How can I discover how many arguments a function was actually called with?

606


Which of these functions is safer to use : fgets(), gets()? Why?

609


What are identifiers and keywords in c?

543


What is a dynamic array in c?

567


What do you know about the use of bit field?

586


Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.

589


How are 16- and 32-bit numbers stored?

693


What is extern storage class in c?

486