Thread: Pointers

  1. #1
    Brita like the water
    Join Date
    Mar 2005
    Location
    Look at the palm of your hand, its somewhere in there
    Posts
    9

    Pointers

    If someone out there has a little pointer program they could show me so I could maybe look at it line by line and try to grasp the concepts. I've been reading about pointers all day, and I want to learn how to write a program that uses them. Thanks

  2. #2
    Hello,

    This thread may help: pointers


    - Stack Overflow
    Segmentation Fault: I am an error in which a running program attempts to access memory not allocated to it and core dumps with a segmentation violation error. This is often caused by improper usage of pointers, attempts to access a non-existent or read-only physical memory address, re-use of memory if freed within the same scope, de-referencing a null pointer, or (in C) inadvertently using a non-pointer variable as a pointer.

  3. #3
    Brita like the water
    Join Date
    Mar 2005
    Location
    Look at the palm of your hand, its somewhere in there
    Posts
    9

    pointers

    Muchos thanksos ;o)

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Using pointers to pointers
    By steve1_rm in forum C Programming
    Replies: 18
    Last Post: 05-29-2008, 05:59 AM
  2. function pointers
    By benhaldor in forum C Programming
    Replies: 4
    Last Post: 08-19-2007, 10:56 AM
  3. Request for comments
    By Prelude in forum A Brief History of Cprogramming.com
    Replies: 15
    Last Post: 01-02-2004, 10:33 AM
  4. Staticly Bound Member Function Pointers
    By Polymorphic OOP in forum C++ Programming
    Replies: 29
    Last Post: 11-28-2002, 01:18 PM