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
The % symbol has a special use in a printf statement. Explain how would you place this character as part of the output on the screen?
Which header file is used for clrscr?
write a program to rearrange the array such way that all even elements should come first and next come odd
what is the function of pragma directive in c?
What is the difference between array and linked list in c?
Find MAXIMUM of three distinct integers using a single C statement
what are the advanced features of functions a) function declaration and prototypes b) calling functions by value or by reference c) recursion d) all the above
How can a program be made to print the name of a source file where an error occurs?
What is wrong in this statement? scanf(ā%dā,whatnumber);
Is c++ based on c?
If one class contains another class as a member, in what order are the two class constructors called a) Constructor for the member class is called first b) Constructor for the member class is called second c) Only one of the constructors is called d) all of the above
What are the 3 types of structures?
What is static and volatile in c?
general for is %wd,f-d; in this system "w" means a) 'w' represent total width of digits b) 'w' represent width which includes the digits before,after decimal place and the decimal point c) 'w' represent width which includes the digits before only d) 'w' represent width after decimal place only
What is static memory allocation?