strcpy() function is not working in MSVC++ 6
Heres what I have
#include <stdio.h>
main()
{
char varname[10];
strcpy(varname, string);
}
this gives me invalid identifier or something to that effect
do you have to do anything special with #include for MSVC++ 6 to recognize strcpy()
BTW I got this code from a book that I am learning from, however, it doesnt include visual c++ compiler stuff
any help appreciated



LinkBack URL
About LinkBacks


