Where is volatile variable stored?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More C Interview Questions

main() { int x=5,y=10,z=0; x=x++ + y++; y=y++ + ++x; z=x++ + ++y; printf("%d%d%d\n",x,y,z); }

1 Answers   CodeChef,


Explain is it better to use a pointer to navigate an array of values, or is it better to use a subscripted array name?

0 Answers  


how can I convert a string to a number?

0 Answers  


What are pragmas and what are they good for?

0 Answers  


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

0 Answers  






Switch (i) i=1; case 1 i++; case 2 ++i; break; case 3 --i; Output of i after executing the program

5 Answers   Mascot,


#define MAX(x,y) (x) > (y) ? (x) : (y) main() { int i = 10, j = 5, k = 0; k = MAX(i++, ++j); printf("%d %d %d", i,j,k); } what will the values of i , j and k? }

14 Answers   CDAC, GATE, NDS, TCS,


Write a program to accept a character & display its corrosponding ASCII value & vice versa?

9 Answers  


Explain void pointer?

0 Answers  


Why doesnt long int work?

0 Answers  


swap 2 numbers without using third variable?

0 Answers   IBS,


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

0 Answers  


Categories