How the processor registers can be used in C ?

Answers were Sorted based on User's Feedback



How the processor registers can be used in C ?..

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

How the processor registers can be used in C ?..

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

How the processor registers can be used in C ?..

Answer / muthukumar

using the keyword register.

Is This Answer Correct ?    5 Yes 1 No

How the processor registers can be used in C ?..

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

How the processor registers can be used in C ?..

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

How the processor registers can be used in C ?..

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

How the processor registers can be used in C ?..

Answer / wolverine

register data type variablename; // to use processor registers

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C Interview Questions

what is the output of the code and how? main() { int *ptr,x; x=sizeof(ptr); printf("%d",x); }

1 Answers  


Is c call by value?

0 Answers  


plz answer..... a program that reads non-negative integer and computes and prints its factorial

2 Answers  


main() { int arr[5]={23,67}; printf("%d%d%d",arr[2],arr[3],arr[4]); }

9 Answers   TCS,


IS Doon college of Engn.. has good faculty

1 Answers  






What is a C array and illustrate the how is it different from a list.

1 Answers   Amazon,


What is enumerated data type in c?

0 Answers  


Print the foll in C...eg when n=5 the o/p must b + + + + + + + + + + + + + + + + +

1 Answers  


what is the output of the following program? #include<stdio.h> void main() { float x=1.1; while(x==1.1) { printf("\n%f",x); x=x-0.1; } }

6 Answers  


who is the editor of 'pokemon'?

1 Answers  


two variables are added answer is stored on not for third variable how it is possible?

3 Answers  


what is the similarities between. system call and library function?

1 Answers   Wipro,


Categories