answersLogoWhite

0

What you mean by this pointer?

User Avatar

Anonymous

13y ago
Updated: 8/20/2019

This pointer can have a lot of reasons so maybe you should ask your parents

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

Why is double pointer used?

Double pointer is a pointer to a pointer. So you can work with the double pointer as you work with a single one.Or you might mean 'pointer to double', eg:void clear_double (double *dp){*dp = 0;}


What does pointer to pointer finger mean?

yea that's why its called the point FINGER


Can a pointer be considered a variable?

You can declare pointer-variables, if that's what you mean. Example: char *sample = "Sample";


33 What does the error 'Null Pointer Assignment' mean and what causes this error?

This error appears due to incorrect assignment to pointer and pointer tries to access illegal memory...


What does it mean by huge pointer is normalize give detail about far pointer huge pointer?

On far pointers the comparison operators(== and !=) check the 32 bit value. While >, =,


How do you determine the pointer?

What do you mean by 'determine'? Explain, please.


What does the pointer on a triple balance beam mean?

The function of a pointer tells you if you have the correct measurement or not. hope that helped!!:)xoxox <3 -Demi


What does it mean when you touch your pointer fingers together?

When you touch your pointer fingers together, it can symbolize connection, agreement, or unity between two people.


What does multiplying a pointer by 5 in C plus plus mean How does it change the pointer's value?

Multiplication is yet another thing, what you should never do with pointers.


What does mm mean on a laser pointer?

Millimeter and it shows the wavelength of the laser.


Difference between pointer to constant and constant pointer?

1. pointer to a constant means you can not change what the pointer points to 2. constant pointer means you can not change the pointer.


What is triple pointer?

Example: int x; -- integer int *px= &x; -- pointer to integer int **ppx= &px; -- pointer to pointer to integer int ***pppx= &ppx; -- pointer to pointer to pointer to integer