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...

how can make variable not in registers

Answer Posted / sandeep

By adding volatile qualifier
eg:volatile int a;

Is This Answer Correct ?    0 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is C language ?

2016


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

1168


can we change the default calling convention in c if yes than how.........?

2592


What are register variables in c?

1046


What are the modifiers available in c programming language?

1273


Can a variable be both static and volatile in c?

1080


Explain why can’t constant values be used to define an array’s initial size?

1398


Why structure is used in c?

1236


If i have an array 0 to 99 i.e,(Size 100) I place the values 1 to 100 randomly like a[0]=29,a[1]=56 upto array[99].. the values are only between 1 to 100. getting the array values by using scanf.. If i entered one wrong element value line a[56]=108. how can i find it.. and also how to find the missing value in 1 to 100.. and i want to replace the missing values.. any one of them know please post your answer..

2071


a c variable cannot start with a) an alphabet b) a number c) a special symbol d) both b and c above

1282


What does the message "automatic aggregate intialization is an ansi feature" mean?

1241


Differentiate between null and void pointers.

1225


write a program to concatenation the string using switch case?

2142


What do you mean by invalid pointer arithmetic?

1128


Can you subtract pointers from each other? Why would you?

1001