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
What is time null in c?
What is the difference between union and structure in c?
Do you have any idea about the use of "auto" keyword?
What is nested structure in c?
Explain what is the difference between the expression '++a' and 'a++'?
What is include directive in c?
How can you return multiple values from a function?
In cryptography, you could often break the algorithm if you know what was the original (plain) text that was encoded into the current ciphertext. This is called the plain text attack. In this simple problem, we illustrate the plain text attack on a simple substitution cipher encryption, where you know each letter has been substituted with a different letter from the alphabet but you don’t know what that letter is. You are given the cipherText as the input string to the function getwordSets(). You know that a plain text "AMMUNITION" occurs somewhere in this cipher text. Now, you have to find out which sets of characters corresponds to the encrypted form of the "AMMUNITION". You can assume that the encryption follows simple substitution only. [Hint: You could use the pattern in the "AMMUNITION" like MM occurring twice together to identify this]
Why void is used in c?
what is the difference between north western polytechnique university and your applied colleges?? please give ur answers for this. :)
Why is struct padding needed?
Why does the call char scanf work?
Explain what are header files and explain what are its uses in c programming?
How many main () function we can have in a project?
How variables are declared in c?