Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

discuss the steps needed to get a program from source code to executable in a system?

1 Answers  


Which is the best website to learn c programming?

0 Answers  


Explain what are linked list?

0 Answers  


The __________ attribute is used to announce variables based on definitions of columns in a table?

0 Answers  


What are the __date__ and __time__ preprocessor commands?

0 Answers  


Finding first/last occurrence of a character in a string without using strchr( ) /strrchr( ) function.

2 Answers  


What is the exact difference between '\0' and ""

3 Answers  


What is static function in c?

0 Answers  


How does normalization of huge pointer works?

0 Answers  


main() { unsigned int k = 987 , i = 0; char trans[10]; do { trans[i++] =(char) (k%16 > 9 ? k%16 - 10 + 'a' : '\0' ); } while(k /= 16); printf("%s\n", trans); }

4 Answers   Vector,


what is the difference between c and java?

1 Answers  


What are the main characteristics of c language describe the structure of ac program?

0 Answers  


Categories