How the processor registers can be used in C ?
Answer Posted / 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 |
Post New Answer View All Answers
C language questions for civil engineering
What is volatile variable how do you declare it?
a single linked list consists of nodes a to z .print the nodes in reverse order from z to a using recursion
Explain how many levels deep can include files be nested?
How do I read the arrow keys? What about function keys?
#include main() { enum _tag{ left=10, right, front=100, back}; printf("left is %d, right is %d, front is %d, back is %d",left,right,front,back); }
Write a program in c to replace any vowel in a string with z?
Explain the binary height balanced tree?
Does c have circular shift operators?
design and implement a data structure and performs the following operation with the help of file (included 1000 student marks in 5 sub. and %also) 1.how many students are fail in all 5 subjects (if >35) 2. delete all student data those are fail in all 5 subjects. 3. update the grace marks (5 no. if exam paper is 100 marks) 4. arrange the student data in ascending order basis of marks. 5.insert double of deleted students with marks in the list.
What are the restrictions of a modulus operator?
diff between exptected result and requirement?
How can I manipulate strings of multibyte characters?
Explain how can you avoid including a header more than once?
What are bitwise shift operators in c programming?