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 can I invoke another program (a standalone executable, or an operating system command) from within a c program?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Write a program to print “hello world” without using semicolon?
Why we use stdio h in c?
What is the code for 3 questions and answer check in VisualBasic.Net?
Which header file is essential for using strcmp function?
number of times a digit is present in a number
What are the ways to a null pointer can use in c programming language?
what is the diffrenet bettwen HTTP and internet protocol
What is #include conio h?
what is use of malloc and calloc?
What is the difference between exit() and _exit() function?
What is the total generic pointer type?
Why is c called "mother" language?
What is hashing in c?