answersLogoWhite

0


Best Answer

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

15y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the symbol of pointer operator?
Write your answer...
Submit
Still have questions?
magnify glass
imp
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: [] * -> + - ++ -- = += -= & == < <= > >= !


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 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().


What is excel arithemetic operator less then?

The less than operator is the < symbol.


Delete memory release operator in c plus plus?

You can't physically delete memory, you can only delete a pointer to allocated memory, which subsequently releases the memory back to the system. The operator is delete, passing the pointer as the operand. If the pointer points to an array, then you must also use the index operator [] in front of the pointer name.int main(){// pointer to an int type with value 100int* ptr_int = new int(100);// ... use pointer ...// release the integerdelete ptr_int;// pointer to an array 100 int types (with undefined values)int* ptr_int_array = new int[100];// ... use array ...// release the arraydelete [] ptr_int_array;return(0);}