Search:

Type: Posts; User: bgrahambo

Search: Search took 0.00 seconds.

  1. Replies
    1
    Views
    739

    void general pointers

    Question:

    If I have a void pointer storing the address of an integer, how would I be able to print that integer from the void pointer?

    example:




    void main()
  2. Thread: XOR lists?

    by bgrahambo
    Replies
    4
    Views
    1,865

    I'm working out a meeting time with coug1297, but...

    I'm working out a meeting time with coug1297, but if you guys also wanna meet up this weekend, I'd be cool with that too. Unfortunatly, I'll be occupied during the mornings on both Saturday and...
  3. Replies
    12
    Views
    1,353

    if you need to write each function and it's ok to...

    if you need to write each function and it's ok to use a little recursion, try something like:

    int factorial(a) //computes factorial
    {
    if(a > 1)
    a = a * N(a-1);
    else
    return 1;
    return...
  4. Thread: XOR lists?

    by bgrahambo
    Replies
    4
    Views
    1,865

    XOR lists?

    I'm in an intermediate level C++ class and I'm supposed to be using an XOR list ADT to implement my next program. I know how a list works, but I don't know how to program one using XOR's. Anyone...
Results 1 to 4 of 4