What is volatile

Answer Posted / nikhil

Basically, it is a type qualifier.
a volatile data type is used at optimizer level.
Generally, in the embedded coding, When the optimizer is Set
on "favor size". The data type declaration as volatile
declares to compiler that the value of this data type can
change beyond the program flow(like interrupts.
Otherwise if the optimizer is enable, the program malfunctions.

Is This Answer Correct ?    1 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

write a program to print data of 5 five students with structures?

1604


You have given 2 array. You need to find whether they will create the same BST or not. For example: Array1:10 5 20 15 30 Array2:10 20 15 30 5 Result: True Array1:10 5 20 15 30 Array2:10 15 20 30 5 Result: False One Approach is Pretty Clear by creating BST O(nlogn) then checking two tree for identical O(N) overall O(nlogn) ..we need there exist O(N) Time & O(1) Space also without extra space .Algorithm ?? DevoCoder guest Posted 3 months ago # #define true 1 #define false 0 int check(int a1[],int a2[],int n1,int n2) { int i; //n1 size of array a1[] and n2 size of a2[] if(n1!=n2) return false; //n1 and n2 must be same for(i=0;ia1[i+1]) && (a2[i]>a2[i+1]) ) ) return false; } return true;//assumed that each array doesn't contain duplicate elements in themshelves }

2710


Is it possible to have a function as a parameter in another function?

594


what is the different bitween abap and abap-hr?

1741


What is huge pointer in c?

580






Explain pointer. What are function pointers in C?

624


Please send me WIPRO technical question to my mail ID.. its nisha_g28@yahoo.com please its urgent

1644


What is data structure in c programming?

569


What does char * * argv mean in c?

621


What is stack in c?

609


Distinguish between actual and formal arguments.

587


What are pointers?

628


What are the types of type specifiers?

618


What are data structures in c and how to use them?

670


What is the right type to use for boolean values in c?

580