What is the use of volatile?
Answer / Kajal Choudhary
The volatile modifier in C programming language is used to inform the compiler that a variable's value may be modified by hardware independent reasons (such as interrupts) and should not optimize accesses to that variable. This ensures that the program always reads the most current value of the variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is stack a keyword in c?
how to print this pyramid * * * * * * * * * * * * *
write a program to display the frequency of each element in a given array in c language
What are dangling pointers?
What are structure types in C?
What are control structures? What are the different types?
In C language, a variable name cannot contain?
? ???Mirror Mirror on the wall????????
second highest number in a given set of numbers
How to swap 3 numbers without using 4th variable?
Under what circumstances does a name clash occur?
Can include files be nested?