|
다음과 같은 소스코드가 있습니다...
char DirPath[MAX_PATH];
.....
strcat( DirPath, "\" );
이렇게 하니.. 다음과 같은 에러가 납니다..
[C++ Error] New.cpp(44): E2380 Unterminated string or character constant
[C++ Error] New.cpp(45): E2188 Expression syntax
[C++ Error] New.cpp(63): E2093 'operator!' not implemented in type 'AnsiString' for arguments of the same type
근데.. 이상하게도 \ 대신에 다른 문자를 넣으면 잘됩니다...
빌더에서는 \ 문자를 인식하질 못하나요?
해결 방안이 있다면 답변 부탁드립니다..
|