목록CPP (1)
루토's sssssstory
[VisualStudio] C -> CPP, CPP -> C 로 컴파일 하기
Visual Studio 6.0에서 C 확장자로 된 파일을 CPP로 컴파일 하거나 CPP 확장자로 된 파일을 C 파일로 컴파일 하기 위해서는 아래와 같은 옵션을 사용하면 가능하다. /TC : CPP 확장자를 가진 파일을 C 확장자로 컴파일 /TP : C확장자를 가진 파일을 CPP 확장자로 컴파일 아래는 MSDN의 내용 /Tc, /Tp, /TC, /TP (Specify Source File Type)Syntax /Tcfilename /Tpfilename /TC /TP The /Tc option specifies that filename is a C source file, even if it doesn’t have a .C extension. The /Tp option specifies that filena..
Development/C & C++
2009. 6. 3. 17:36