answersLogoWhite

0

What controls the pointer?

User Avatar

Anonymous

15y ago
Updated: 8/17/2019

The program's statements, just like any other variable.

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

Is a mouse pointer controls the movement of the mouse tip on your computer screen?

no


What Controls pointer?

The program's statements, just like any other variable.


How do you move the pointer on a microscope?

To move the pointer on a microscope, you can adjust the mechanical stage controls that move the slide horizontally and vertically. Simply turn the knobs in the desired direction to position the pointer over the area of interest on the specimen slide.


What is the use of the anomometer?

The wind controls the speed of rotation of the arms of an anemometer and this can be electrically converted to a measuring pointer to indicate wind speed.


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


What is deflecting?

Controlling torque controls the deflection and tries to stop the pointer at its final position.But due to inertia, the pointer oscillates around its final position before coming to rest. Hence damping torque is provoded to avoid this oscillation and bring the pointer quickly to its final position.Thus the damping torque is never greater than the controlling torque. In fact it is the condition of critical damping which is sufficient to enable the pointer to rise quickly to its deflected position without overshooting.


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 is pointer of pointer?

pointer is the variable that holds the address of another variable


What is deflecting torque?

Controlling torque controls the deflection and tries to stop the pointer at its final position.But due to inertia, the pointer oscillates around its final position before coming to rest. Hence damping torque is provoded to avoid this oscillation and bring the pointer quickly to its final position.Thus the damping torque is never greater than the controlling torque. In fact it is the condition of critical damping which is sufficient to enable the pointer to rise quickly to its deflected position without overshooting.


What does the Logitech R400 do?

The Logitech R400 is a wireless mouse remote for presentations. It has esy touch controls for slideshow presentations, a red laser pointer and the freedom to move around the room.


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;