How the processor registers can be used in C ?
Answer Posted / chetan raikwar
CPU (Processor) registers store the values which can be accessed faster than other ordinary values.
* These can be used by the keyword register.
* Keyword should be place before declaring the type of variable.
example:- (simple storage) int i; char a; etc.
(registered storage) register int i; register char a;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to compare array with pointer in c?
How to throw some light on the b tree?
What are the different types of constants?
How many types of errors are there in c language? Explain
What does int main () mean?
in iso what are the common technological language?
What is the difference between typedef struct and struct?
Is there sort function in c?
What are inbuilt functions in c?
What is break statement?
given post order,in order construct the corresponding binary tree
What is the difference between malloc() and calloc() function in c language?
How are strings stored in c?
What is calloc malloc realloc in c?
What is the use of a semicolon (;) at the end of every program statement?