answersLogoWhite

0

Why to use pointers in programs?

Updated: 8/19/2019
User Avatar

Wiki User

12y ago

Best Answer

To use memory effectively. . .

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Why to use pointers in programs?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What settings do you need to use far keywords and other c style syntax in our programs while writing programs in VC?

There are no settings. Near and far pointers are specific to segmented memory models but when working with virtual memory models we always use normalised pointers which are always the same length (in bits). Near pointers use fewer bits than normalised pointers (usually half as many bits) because they only refer to the offset address within the current segment. Far pointers are similar to normalised pointers, except the high-order word refers to the segment address and the low-order word refers to the offset within that segment.


What are the c-programs for indexed fileallocation without pointers?

Home-works.


Can you use pointers in java?

Java does not support Pointers and hence you cannot use it in Java.


There are two general comments about pointers 1. Pointers increase the efficiency of our programs 2. Pointers degrade reliability of C programs due to security issues are use of pointers beneficial?

"What is the difference between bracketing method and iterative method in solving Algebraic and Transcendental equations. Name some methods which lie under both these categories. Also describe the differences between Trapezoidal rule, Simpson's 1/3 rule and Simpson's 3/8 rule."


Do you use pointers in java?

no


What are five safety pointers for use in electronic shop work?

safety pointers in electric shop


Major c plus plus feature that were removed from java?

Several features that they either made unsafe programs or hard-to-read programs were removed. Some of the features removed include operator overloading; pointers; implicit conversions between numeric and boolean; multiple inheritance.Several features that they either made unsafe programs or hard-to-read programs were removed. Some of the features removed include operator overloading; pointers; implicit conversions between numeric and boolean; multiple inheritance.Several features that they either made unsafe programs or hard-to-read programs were removed. Some of the features removed include operator overloading; pointers; implicit conversions between numeric and boolean; multiple inheritance.Several features that they either made unsafe programs or hard-to-read programs were removed. Some of the features removed include operator overloading; pointers; implicit conversions between numeric and boolean; multiple inheritance.


Pointers are include in csharp or not?

Yes, you can use pointers in the C#, but to some extent. Links are added with more details.


What kind of drills do you use for three pointers two pointers and foul shots?

just keep shooting its not that hard


Why laser mouse are used?

Because the laser pointers are much easier to use than the ball pointers. The ball pointers are often difficult to move around while the laser pointers can move in any direction without "getting stuck"


What you use in case of pointer in java?

Java does not have pointers


Why you use pointers?

Because you can produce fast and efficient code. Function arguments are passed "by value", and so you can't change the original value of the argument, but if you use pointers, you can.