answersLogoWhite

0

What Controls pointer?

Updated: 10/29/2021
User Avatar

Wiki User

6y ago

Best Answer

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

User Avatar

Zora Daniel

Lvl 10
2y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What Controls pointer?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

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

no


What controls the pointer?

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


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.


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.


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


What is pointer of pointer?

pointer is the variable that holds the address of another variable


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;}


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;