336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
Visual C++ Concepts: Building a C/C++ Program
Compiler Warning (level 4) C4189
Error Message
'identifier' : local variable is initialized but not referencedA variable is declared and initialized but not used.
The following sample generates C4189:
// C4189.cpp // compile with: /W4 int main() { int a = 1; // C4189, remove declaration to resolve }
'Programming' 카테고리의 다른 글
C4701 (0) | 2009.09.30 |
---|---|
[GUI] 사용이 쉬운 사용자 인터페이스 구현방법 및 디자인 원칙 (0) | 2009.06.23 |
MFC DLL의 resource 찾는 순서 (0) | 2009.04.28 |