Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is the use of keyword volatile??

Answers were Sorted based on User's Feedback



what is the use of keyword volatile??..

Answer / kishor narayan

Volatile qualifier indicates to the compiler that the
variable can be modified at any stage of the program
execution. This can happen even if the region of code being
executed might not have any access to the variable in
question. In that sense, Volatile qualifier does the
opposite of the Const qualifier.
@Vignesh1988i -> Volatile qualifier does not assign any
garbage value to the variable.

Is This Answer Correct ?    15 Yes 0 No

what is the use of keyword volatile??..

Answer / kala

it is the variable which can be modified outside of the
program. i.e hardwares can modify this variable. To avoid
compiler optimization we can use volatile.
this is used for memory mapped hardware and shared memory
usuage.

Is This Answer Correct ?    4 Yes 0 No

what is the use of keyword volatile??..

Answer / pur

if you use volatile variables then code optimization will
not happen at compilation time, so .o size will be more.

Is This Answer Correct ?    2 Yes 0 No

what is the use of keyword volatile??..

Answer / vignesh1988i

volatile keyword is a one in which assigns some garbage
value to the variables declared with this keyword..........
before assigning some values by the user to the variables.

Is This Answer Correct ?    4 Yes 10 No

Post New Answer

More C Interview Questions

What is the purpose of #pragma directives in C?

2 Answers  


Explain is it better to bitshift a value than to multiply by 2?

0 Answers  


What are header files why are they important?

0 Answers  


What is the difference between text and binary i/o?

0 Answers  


Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.

6 Answers   FCI, TCS,


Why is malloc used?

1 Answers  


What functions are used in dynamic memory allocation in c?

0 Answers  


What is a string?

0 Answers  


What is a 'null pointer assignment' error?

0 Answers  


What is c system32 taskhostw exe?

0 Answers  


What is a method in c?

0 Answers  


main() { FILE *fs; char c[10]; fs = fopen(“source.txt”, ”r”); /* source.txt exists and contains “Vector Institute” */ fseek(fs,0,SEEK_END); fseek(fs,-3L,SEEK_CUR); fgets(c,5,fs); puts(c); }

1 Answers   Vector,


Categories