What is an volatile variable?

Answer Posted / vivek satasia

IT IS SUCH A VARIABLE WHICH IS NOT MODIFIED BY ITS PROGRAM
BUT IT CAN BE MODIFIED OUTSIDE PROGRAM ENVIRONMENT.

Is This Answer Correct ?    6 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the difference between struct and typedef struct in c?

890


In C language, a variable name cannot contain?

1010


What is string in c language?

831


What is c mainly used for?

822


What are the advantages of Macro over function?

1616


What is difference between function overloading and operator overloading?

866


What are data types in c language?

801


What are reserved words?

854


What are the different types of objects used in c?

751


Where are c variables stored in memory?

799


Is there any possibility to create customized header file with c programming language?

832


Write a function expand(s1,s2) that expands shorthand notations like a-z in the string s1 into the equivalent complete list abc...xyz in s2 . Allow for letters of either case and digits, and be prepared to handle cases like a-b-c and a-z0-9 and -a-z. z-a:zyx......ba -1-6-:-123456- 1-9-1:123456789987654321 a-R-L:a-R...L a-b-c:abbc

5363


List the variables are used for writing doubly linked list program.

1820


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

884


When should a far pointer be used?

800