블로그에 코딩 소스 올리기(프로그래밍 소스) 소스코드를 아래와 같이 사용하고 싶다면, 1234567#include void main(){ printf("Hello World"); return;}cs 아래 Color Scripter 사이트를 이용하면 가능! https://colorscripter.com 더보기 [C#] bool Boolean, string String 차이 [C#] bool Boolean, string String 차이 Microsoft 공식 사이트에 아래와 같이 표현되어있네요. The following table shows the keywords for built-in C# types, which are aliases of predefined types in the System namespace. 결론 : alias 인걸로..Microsoft 공식사이트 참조 주소 : https://msdn.microsoft.com/en-us/library/ya5y69ds(v=vs.110).aspx 더보기 [C++] CString -> double 형으로 변환 아래와 같이 코딩하면CString 데이터를 double 형으로 변환하여 사용할 수 있다. ---------------------------------------------------------------------------------------------------------------/* CString -> double 형 변환 */CString str;TCHAR *tEnd;double x = 0;x = _tcstod(str, &tEnd);/****************************/--------------------------------------------------------------------------------------------------------------- 참조사이트 .. 더보기 이전 1 ··· 21 22 23 24 25 26 27 28 다음