answersLogoWhite

0

The pointer operator is called a mouse. This is a small woodland rodent and the aparatus looks similar to one when it is wired to the computer.

User Avatar

Wiki User

17y ago

What else can I help you with?

Continue Learning about Computer Science
Related Questions

What is the symbol of operations?

The pointer operator is called a mouse. This is a small woodland rodent and the aparatus looks similar to one when it is wired to the computer.


What is pointer operator?

For example: [] * -> + - ++ -- = += -= & == < <= > >= !


Who is the address operator?

The address operator, often represented by the ampersand symbol (&) in programming languages like C and C++, is used to retrieve the memory address of a variable. By applying the address operator to a variable, you can obtain a pointer that points to the location in memory where that variable is stored. This is essential for pointer manipulation and dynamic memory management in these languages.


Which is the unary operator used to dereference a pointer and return the value stored in it?

The asterisk (*) operator dereferences a pointer and returns the value stored in the memory pointed to by the pointer.


What is the symbol for Pointer Telocation Ltd in NASDAQ?

The symbol for Pointer Telocation Ltd. in NASDAQ is: PNTR.


What is indirection operator?

The indirection operator, typically represented by the asterisk (*) in languages like C and C++, is used to access the value at a specific memory address referenced by a pointer. When you dereference a pointer using the indirection operator, you retrieve or manipulate the data stored at that pointer's address. This operator is essential for working with dynamic memory and data structures like linked lists and trees.


What is the operator that cannot be overloaded?

There are 5 operators which cannot be overloaded. They are: * .* - class member access operator * :: - scope resolution operator * . - dot operator * ?:: - conditional operator * Sizeof() - operator Note:- This is possible only in C++.


Which operator is used to indirectly access a member of a struct?

pointer -> fieldname


In pointers what is the use of pointer variable?

Pointer is a variable that stores the address of another variable . So pointer basically stores the address of another variable and size of pointer can be evaluated by using sizeof operator.


How pointer is declared using address operator?

int *ptr; PS: I don't know what do you mean by 'using address operator'


Which c plus plus operators cannot be overloaded?

1. Member-of operator (.) 2. Pointer-to-member-of operator (.*) 3. Ternary condition operator (?:) 4. Scope resolution operator (::) 5. sizeof operator 6. typeid operator


When do we use an address operator in c'?

In C we use & operator while giving address of some variable to some pointer variable. & operator is also used in scanf().