Howdy,
Thanks for helping a new programmer, I sincerely appreciate it.
I am trying to copy character string information stored in a file pointer to another pointer.
Should I initialize the pointer like
char newPtr[90000]?
(yea the file pointer being copied to it is big!)
And what statement do I use to transfer data from the two pointers?
*newPtr = *inputPtr; ?
Note: I am trying to get around incrementing the file pointer used later in the program.
Thank you for any help,
Willz99ta
Thanks for helping a new programmer, I sincerely appreciate it.
I am trying to copy character string information stored in a file pointer to another pointer.
Should I initialize the pointer like
char newPtr[90000]?
(yea the file pointer being copied to it is big!)
And what statement do I use to transfer data from the two pointers?
*newPtr = *inputPtr; ?
Note: I am trying to get around incrementing the file pointer used later in the program.
Thank you for any help,
Willz99ta