On this page you can get a detailed analysis of a word or phrase, produced by the best artificial intelligence technology to date:
вычислительная техника
адрес-указатель
общая лексика
адресная арифметика с указателями
широко используется в языках Си и C++
Смотрите также
общая лексика
ссылочный тип
тип данных, определяющий переменные, называющиеся указателями. Эти переменные содержат адрес памяти, где хранится значение соответствующего типа. Использование указателей, с одной стороны, ускоряет работу программы, а с другой, - затрудняет контроль правильности программы
синоним
Смотрите также
The program counter (PC), commonly called the instruction pointer (IP) in Intel x86 and Itanium microprocessors, and sometimes called the instruction address register (IAR), the instruction counter, or just part of the instruction sequencer, is a processor register that indicates where a computer is in its program sequence.
Usually, the PC is incremented after fetching an instruction, and holds the memory address of ("points to") the next instruction that would be executed.
Processors usually fetch instructions sequentially from memory, but control transfer instructions change the sequence by placing a new value in the PC. These include branches (sometimes called jumps), subroutine calls, and returns. A transfer that is conditional on the truth of some assertion lets the computer follow a different sequence under different conditions.
A branch provides that the next instruction is fetched from elsewhere in memory. A subroutine call not only branches but saves the preceding contents of the PC somewhere. A return retrieves the saved contents of the PC and places it back in the PC, resuming sequential execution with the instruction following the subroutine call.