728x90
반응형
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// MinMax.cpp | |
// min/max value of C++ | |
// code from : http://www.cppreference.com/wiki/data_types | |
#include <limits> | |
std::cout << "Maximum short value: " << std::numeric_limits<short>::max() << std::endl; | |
std::cout << "Minimum short value: " << std::numeric_limits<short>::min() << std::endl; | |
728x90
반응형
'C C++' 카테고리의 다른 글
GCC를 활용한 공유 라이브러리 생성 및 활용 방법 (0) | 2009.03.07 |
---|---|
Windows XP 에서 Cygwin 구성 - (2) (0) | 2009.02.19 |
History of C/Unix/C++/Linux/gcc/glibc (0) | 2009.01.13 |
C/C++ 역사 (0) | 2009.01.03 |
Visual Studio 2005/2008 DLL 배포와 WinSxS의 활용법 (0) | 2008.12.05 |