answersLogoWhite

0


Best Answer

Pointers come in different breeds. For example: German Short Haired Pointer and English Pointer.

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Is a pointer and an English pointer the same?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What work does a pointer dog do?

pointer are offen called and English Pointer is a bread of dog devolpedas a gun dog it is one of the sevrul pointing breads


What are the best hunting dogs?

# Labrador # English Pointer # Catahoula # Irish Setter # German Short-Haired Pointer # English Setter # Golden Retriever # Chesapeake Bay Retriever # Brittany # Springer Spaniel


How many pointers can be used in a c program?

Answergenerally we use simple pointer, void pointer,null pointer, structure pointer. Answerzero or more (unlimited).


How many can a English pointer have in a litter?

5-7 Puupies Average: 6


What dog breed is in Disneys Pluto?

English pointer breed.


What kind of breed is the English Pointer developed as?

The English Pointer was developed to be what is called a "gun dog". It's used to hunt and catch rabbits and birds. It's bred to be a very graceful and athletic dog with a very alert personality.


Passing an array name to a pointer assigns the first memory location of the array to the pointer variable?

Yes, passing an array name to a pointer assigns the first memory location of the array to the pointer variable. An array name is the same as a pointer to the first location of the array, with the exception that an array name is a r-value, while a pointer is an l-value.


Painting of springer spaniel by ruane manning?

The painting you are asking about is called "English Pointer."


What is a pointer in turbo c?

The same as in any other C compiler.


How fast could an English pointer run 9 miles?

About 10 MPH


When does an array behave a pointer?

An array behaves like a pointer when you use its name in an expression without the brackets.int a[10]; /* a array of 10 ints */int *b = a; /* a reference to a as a pointer, making b like a */int c = *(a+3); /* a reference to a[3] using pointer semantics */myfunc(a); /* pass a's address, a pointer to myfunc */Note very carefully that, while an array name and a pointer can almost always be interchanged in context, the are not the same, in that a pointer is an l-value, such as b, above, and can be assigned, whereas a is an r-value and can only be referenced, such as in the same statement, the second statement. Also, an array name does not take up memory, while a pointer does.


Write down the equivalent pointer expression for referring the same element aijkl?

it is a[i][j][k][l]; so in pointer reference: *(*(*(*(*(a+i)+j))+k)+l)