answersLogoWhite

0

What else can I help you with?

Related Questions

What tool uses a magnetized pointer to show direction?

compass


How you get the cursor back to normal in gimp?

It would seem you cannot. However, you can select the "move" tool (up/down/left/right blue arrow tool) and it will work like a pointer. I agree, even of the functionality of the "move" tool and the regular pointer are virtually identical, the context is different and a regular pointer tool option would be a welcome addition for many.


What is the Hebrew word for the pointer used to read the Torah?

This tool is called a Yad (יד)


What are the elements of a wimp style user interface?

Windows, icon, menu, pointer, button, tool bar


Is there a basic pointer tool in gimp?

There isn't - which is an obscene idea. GIMP designers know BETTER what's convenient.


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 the weather tool that measures wind derection?

The weather tool that measures wind direction is called a weather vane or wind vane. It typically consists of a rotating arrow or pointer that aligns with the direction from which the wind is blowing.


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


What are pointer to pointer?

A pointer only holds an address information (location) in the memory. if a pointer holds points another pointer then it is a pointer to an other pointer. Pointer holds an address in the memory so in that address there is an other location information that shows another location.


What star does the pointer star of the big dipper point to?

The pointer stars in the Big Dipper point towards the North Star, also known as Polaris. Polaris is located directly above the North Pole and remains nearly stationary in the sky. This makes it a useful navigational tool for finding north.


What is pointer of pointer?

pointer is the variable that holds the address of another variable


Define pointer to pointer in c?

Double (**) is used to denote the double pointer. As we know the pointer stores the address of variable, Double pointer stores the address of any pointer variable. Declaration : int **ptr2Ptr;