Ask Experts Questions for FREE Help!
 

Free Answers in 3 Easy Steps

Register Now
3 Steps
 


Ask QuestionsprogressAnswer QuestionsprogressBuild ReputationprogressBecome an Expert
 
At Ask Me Help Desk you can ask questions in any topic and have them answered for free by our experts. To ask questions or participate in answering them you must register for a free account. By registering you will be able to:
  • Get free answers from experts in any of our 300+ topics.
  • Accept money for answers that you provide.
  • Communicate privately with other members (PM).
  • See fewer ads.
  View Answers    Answer this question    Ask a question  
 

sankulanushkul
Jun 5, 2007, 12:08 AM
What is pointer

Capuchin
Jun 5, 2007, 12:15 AM
Pointer (computing) - Wikipedia, the free encyclopedia (http://en.wikipedia.org/wiki/Pointer)

kencctt
Aug 6, 2007, 03:16 PM
A pointer is variable in memory that contains the memory address of something else like a structure or another variable. Pointers can come in handy when passing information to another part of your code because they can represent a large piece of data by simply "pointing" to it. You can pass information to other functions either by just the address (passing by reference) or the data itself. (by value). C# handles pointers a little different so do some reading and have fun.

learntoknow
Jan 18, 2008, 05:58 AM
Try this detailed discussion of Pointers in C:

HowToProgramC : Pointers in C / C++ (http://howtoprogramc.googlepages.com/pointers.htm)