Re: FILE objects
If you have trouble with the difference between[color=blue]
> int var and int *var I suggest you stay away from FILE
> objects for now.
>[/color]
I know what they mean. var is a variable. A place in memory for an int.
And *var is a pointer to a location in memory that is an int. What I confuse
is how to use this in function parameters.
For example int function(void** )
That's a pointer to a pointer to a void. But what do you do with it in
code ?
Bill
If you have trouble with the difference between[color=blue]
> int var and int *var I suggest you stay away from FILE
> objects for now.
>[/color]
I know what they mean. var is a variable. A place in memory for an int.
And *var is a pointer to a location in memory that is an int. What I confuse
is how to use this in function parameters.
For example int function(void** )
That's a pointer to a pointer to a void. But what do you do with it in
code ?
Bill
Comment