How the processor registers can be used in C ?

Answer Posted / sundeep

processor registers can be used to store variables which
are accessed frequently and if the registers are not used
by any other programs ,then those registers will be used to
allocate memory for those variabls.

Is This Answer Correct ?    5 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Explain how do you override a defined macro?

576


Why can arithmetic operations not be performed on void pointers?

583


How can I implement sets or arrays of bits?

596


write a program to convert a expression in polish notation(postfix) to inline(normal) something like make 723+* (2+3) x 7 (not sure) just check out its mainly printing expression in postfix form to infix.

3493


.main() { char *p = "hello world!"; p[0] = 'H'; printf("%s",p); }

696






Is sizeof a keyword in c?

573


What are qualifiers in c?

564


How many keywords (reserve words) are in c?

603


int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above

734


Explain how do you determine the length of a string value that was stored in a variable?

661


What is data structure in c and its types?

583


how do you write a function that takes a variable number of arguments? What is the prototype of printf () function?

1483


Compare interpreters and compilers.

633


What is a function simple definition?

604


What is function prototype in c language?

606