How the processor registers can be used in C ?
Answers were Sorted based on User's Feedback
Answer / om prakash mishra
in C,processor registers can be used by keyword
register...however,this keyword is a request not a command
to compiler to make use of processor register.snce the
processor register are very limited therefore a compiler
can skip the register keyword.
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / rahul singh
ACTUALLY PROCESSOR REGISTER ARE USED TO STORE THE DATA OR
RESULT DURING THE EXECUTION OF THE PROGRAM. PROCESSOR
REGISTER ARE CALLED MEMORY REGISTER.THE ACCESS TIME OF THIS
MEMORY IS VERY FAST.
| Is This Answer Correct ? | 9 Yes | 1 No |
Answer / 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 |
Answer / anandam niranjan
cpu registers can be accessed faster than varibles in memory.
so we use processor registers to store frequently used variables
and this can be done by using the keyword "register" before
the declaration of variable as its storage class
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / 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 |
Answer / wolverine
register data type variablename; // to use processor registers
| Is This Answer Correct ? | 0 Yes | 0 No |
What is pre-emptive data structure and explain it with example?
How do you use a pointer to a function?
difference between loading and linking
Explain how can a program be made to print the name of a source file where an error occurs?
Why static variable is used in c?
the constant value in the case label is followed by a a) semicolon b) colon c) braces d) none of the above
in malloc and calloc which one is fast and why?
#include<stdio.h> #include<conio.h> # define swap(a,b) temp=a; a=b; b=temp; void main( ) { int i, j, temp; i=5; j=10; temp=0; if( i > j) swap( i, j ); printf( "%d %d %d", i, j, temp); }
how we can make 3d venturing graphics on outer interface
What is the output of the below program and how it is? void main() { static int var=5; printf("%d",var--); if(var) main(); }
8 Answers MindFire, TCS, Tech Mahindra,
write a program to find lcm and hcf of two numbers??
What is the meaning of typedef struct in c?