hi, im not a c/c+ programmer ( i do know delphi), anyway im trying to compile a program written in c++, i'v changed it to accept some arguments( a path to a file, which is hardcoded in the original code) from command line, the orignial line was
char Filepath[50] = "F:\\mylib\\*.mp3";
and i changed it to
char Filepath[50] = argv[1];
but i got "cannot convert from 'char *' to 'char []'" error, the main function is like
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
what should i do?? im using MSVC6.
thanks