--- title: "Numerical Limits (C++) | Microsoft Docs" ms.custom: "" ms.date: "11/04/2016" ms.technology: ["cpp-language"] ms.topic: "language-reference" dev_langs: ["C++"] helpviewer_keywords: ["numerical limits"] ms.assetid: 5ebc9837-e273-4ea6-ac7d-14b3c2c974c7 author: "mikeblome" ms.author: "mblome" ms.workload: ["cplusplus"] --- # Numerical Limits (C++) The two standard include files, \ and \, define the numerical limits, or minimum and maximum values that a variable of a given type can hold. These minimums and maximums are guaranteed to be portable to any C++ compiler that uses the same data representation as ANSI C. The \ include file defines the [numerical limits for integral types](../cpp/integer-limits.md), and \ defines the [numerical limits for floating types](../cpp/floating-limits.md). ## See Also [Basic Concepts](../cpp/basic-concepts-cpp.md)