What is an volatile variable?

Answer Posted / shruti

okies..
I really had no idea about this concept..

Can neone plz tell me how do we declare, such volatile
varibales??

Thanks..

Is This Answer Correct ?    2 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Write a program to show the change in position of a cursor using c

581


What is a good way to implement complex numbers in c?

596


How will you find a duplicate number in a array without negating the nos ?

1648


Draw a diagram showing how the operating system relates to users, application programs, and the computer hardware ?

2121


How can I get random integers in a certain range?

613






#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }

631


What is echo in c programming?

557


What is a method in c?

628


What is openmp in c?

612


Write a code of a general series where the next element is the sum of last k terms.

593


What is floating point constants?

692


How can I open a file so that other programs can update it at the same time?

659


What are the different types of endless loops?

624


Explain how do you print only part of a string?

650


What is the purpose of realloc()?

672