Search:

Type: Posts; User: GorGorAlmighty

Search: Search took 0.01 seconds.

  1. Pointers for functions: I'll explain it in 'C'...

    Pointers for functions:

    I'll explain it in 'C' terms since I think it's easier to understand...

    A function can only return one value...or can it? Hmmm....hello pointers!

    initialize...
  2. Pointers: A pointer is a variable that holds a...

    Pointers:

    A pointer is a variable that holds a memory address.

    If you have an integer variable called var:

    int var = 10;

    You can initialize a pointer that will 'point' to the address of...
  3. Replies
    2
    Views
    1,874

    exactly... #include int main()...

    exactly...

    #include <iostream.h>
    int main()
    {
    float a = 7/9*9;
    cout<<a;
    return 0;
    }
  4. Replies
    2
    Views
    882

    These might help a little bit: ...

    These might help a little bit:

    http://www.ontrak.net/mfc.htm

    http://www.traverse.com/people/poinsett/bcbcomm.html
Results 1 to 4 of 4