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 structThank 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 structThe 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 structI 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