Ask Me Help Desk

Ask Me Help Desk (https://www.askmehelpdesk.com/forum.php)
-   C (https://www.askmehelpdesk.com/forumdisplay.php?f=438)
-   -   Pointers in c (https://www.askmehelpdesk.com/showthread.php?t=98631)

  • Jun 5, 2007, 12:08 AM
    sankulanushkul
    Pointers in c
    What is pointer
  • Jun 5, 2007, 12:15 AM
    Capuchin
    Pointer (computing) - Wikipedia, the free encyclopedia
  • Aug 6, 2007, 03:16 PM
    kencctt
    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.
  • Jan 18, 2008, 06:58 AM
    learntoknow
    Try this detailed discussion of Pointers in C:

    HowToProgramC : Pointers in C / C++

  • All times are GMT -7. The time now is 02:10 AM.