how can make variable not in registers



how can make variable not in registers..

Answer / sandeep

By adding volatile qualifier
eg:volatile int a;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

how to display 2-D array elements in spiral

2 Answers  


main() { char *ptr = "Ramco Systems"; (*ptr)++; printf("%s\n",ptr); ptr++; printf("%s\n",ptr); } Find the Outputs?

9 Answers   BTBP, CitiGroup,


Is c compiled or interpreted?

0 Answers  


What are the different types of data structures in c?

0 Answers  


Explain the term printf() and scanf() used in c language?

0 Answers  


write a program to read a number and print in words that is in sentence for example 21,219 then output is "twenty one thousand and two hundred nineteen" by using only control flow statements (only loops and switch case )?

1 Answers   TCS,


What is the use of the restrict keyword?

1 Answers  


How do you use a 'Local Block'?

0 Answers   Ericsson,


what is the difference between auto and static keywords

1 Answers   cDot, College School Exams Tests, TCS,


What is Heap?

3 Answers  


c program to arrange digits in a no in ascending and descending order

1 Answers  


Given a single Linked list with lakhs of nodes and length unknown how do you optimally delete the nth element from the list?

1 Answers   Oracle,


Categories