[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Good documentation on c/c++ pointers?



Ahhh!
lol, thanks.
I see what I have been doing wrong that has messed me over so bad.
Simple syntactical error.
I would try to do this <
    int * pInt = NULL;
    int Int = 1;
    pInt = Int;
 >
Whereas, I should have done this <
    int *pInt = NULL;
    int Int = 1;
    pInt = &Int;
 >
Although I have some garbage in above code, I think I see my issue ;)
Thanks a bunch :)

       --Kyle Pointer

-
To unsubscribe, send email to majordomo@silug.org with
"unsubscribe silug-discuss" in the body.