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 an volatile variable?

Answer Posted / babu

Declaraton an obj const announces that its value will not
be changed;declaring it Volatile announces that it has
special properties relevent to optimization[change].

Is This Answer Correct ?    28 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is string constants?

1202


What should malloc() do? Return a null pointer or a pointer to 0 bytes?

1138


What are extern variables in c?

1036


Why c is called free form language?

1074


What are the advantages of using linked list for tree construction?

1145


How can I check whether a file exists? I want to warn the user if a requested input file is missing.

1206


What extern c means?

1062


what does static variable mean?

1165


State the difference between x3 and x[3].

1165


What is c mainly used for?

1118


What is data structure in c and its types?

1113


What is the difference between a string and an array?

1259


Explain the difference between malloc() and calloc() function?

1101


What are the two forms of #include directive?

1219


Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol

1170