answersLogoWhite

0

What is a pointer in programming?

User Avatar

Anonymous

16y ago
Updated: 8/17/2019

pointers are the variable which stores the address of another variable.

User Avatar

Wiki User

16y ago

What else can I help you with?

Related Questions

What is 'this pointer' in regards to computer programming?

It is a pointer which is pointing to present object with which the memberfunction is called in c++ language.


Is class a pointer?

No. In computer programming, a class is a data type while a pointer is a variable that can store a memory address.


What is the important of pointer in c programming?

It is accessing data by address.


WHAT IS POINTER TO POINTER IN C POINTER?

Pointer in C is Memory Reference. It stores memory address of any variable, constant, function or something you later use in your programming. Pointer basically used to ease the referencing of variables and others or in polymorphism and inheritance.


What does the symbol "-" represent in programming languages?

The symbol "-" in programming languages represents a pointer or a way to access data stored in a memory location.


Which programming language uses a mouse pointer shaped in the form of turtle?

Logo


What does the command strstr do in programming?

The strstr command in programming is used to find a sub string within a string. If nothing is found the pointer is returned to the beginning of the sub string.


What is an address in C plus plus programming?

An address in C or C++ is the location in memory of an object or function. An address is the contents of a pointer, as opposed to the contents of the memory location pointed to by the pointer.


How do you print a far pointer value in a C programming environment using small memory model?

(*p)[23]


Is there any pointer called ds cs es ss pointer in C programming?

yes, ds cs es ss are pointers available in c which is used to refer memory segments


Is a pointer a series of dots or hyphens?

A pointer is not a series of dots or hyphens; it is typically represented as an arrow or a specific symbol that indicates direction or reference in programming and documentation contexts. In graphical interfaces, pointers are often visualized as arrows that indicate where the user should focus or click. In programming, pointers refer to variables that hold memory addresses, and their representation depends on the syntax of the programming language used.


How do you scan values in pointers of C programming?

You do not. A pointer is an opaque value that you do not care what its internal bit value is. You only care that it points to a region of memory that you can do something with. You can scan that region of memory, but not the pointer itself.