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
Why & is used in scanf in c?
Explain that why C is procedural?
What is structure in c explain with example?
please explain every phase in the "SDLC" in the dotnet.
How can I handle floating-point exceptions gracefully?
What is data structure in c programming?
What is a header file?
What is volatile variable in c with example?
Write a program to implement a round robin scheduler and calculate the average waiting time.Arrival time, burst time, time quantum, and no. of processes should be the inputs.
How does placing some code lines between the comment symbol help in debugging the code?
How to create struct variables?
What is the difference between exit() and _exit() function in c?
Explain what is page thrashing?
What is use of null pointer in c?
What are the two forms of #include directive?