User: derekroolz

  • Public profile

User profile: derekroolz

User info
User name:derekroolz
History
Joined:
Number of posts:12
Latest posts:

Recursion and strings
"First, if the pointer to the string hits the zero, or the end of the string you return a negative c...

Recursion and strings
[code] if (*str == '\0') return 0; if (*str == x ) return 0; return 1 + test(str+1, x); [/code] T...

FILE I/0 going from string struct to char struct
Thank you for the reply. I have a question about your code. [code] strncpy(temp.fName2, iter->fNam...

FILE I/0 going from string struct to char struct
The very top of my source code on my post above is my addressBook.h Here is the rest of my code. //...

FILE I/0 going from string struct to char struct
I am having trouble getting my code to work. Right now it doesn't compile because of what I am tryin...

This user does not accept Private Messages