answersLogoWhite

0

access and update in one instruction.

What else can I help you with?

Related Questions

What is increment and auto decrement register addressing mode?

access and update in one instruction.


Why are increment and decrement used in c?

To increment or decrement a value


Which arithmatic operations can be performed on pointers?

Increment and decrement only.


What is the advantage of auto indexing?

If you are referring to the use of the auto-increment/decrement operator, it is expressed more simply, and in some hardware architectures it is a hard-wired machine instruction, resulting in a faster program.


How can you offset a pointer in C?

Increment or decrement the pointer by the required offset.


How do you get your nested loop to decrement and not increment?

Easy. Change any + to -, any += to -=, any ++ to --


What is the opposite of the word increment?

The process of decreasing in number, size, quantity, or extent.Decrease, loss, decrement, reduction, diminution, decline, decay, etc. Decrement.


How different is pre and post increment in c plus plus from pre and post increment in C programming?

The pre and post increment (and decrement) operator is the same in C++ as it is in C.


What is a 'post fix expression' in java programming?

Postfix expressions are expressions where the operator is at the end of the expression. These include the "++" (increment) and "--" (decrement) operators. Most Java expressions use in-fix notation (e.g. "a + b") but the increment and decrement operators can be postfix ("e.g. "a++" to increment variable a) or even prefix (e.g. "++a").


For loop in c language?

for(assigning initial value;condition;increment/decrement) { statement; }


Which two pointer does not increment or decrement in arithmetic array?

constant pointer and character pointer


What type of loop can either increment or decrement the loop control variables value?

Counting Loop