Skip to content

Latest commit

 

History

History
40 lines (38 loc) · 925 Bytes

File metadata and controls

40 lines (38 loc) · 925 Bytes
title Largest Array Size | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-language
ms.tgt_pltfrm
ms.topic article
dev_langs
C++
ms.assetid 4c782cf6-73f3-40b0-b306-229d22da4ee1
caps.latest.revision 8
author mikeblome
ms.author mblome
manager ghogen
translation.priority.ht
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
ru-ru
zh-cn
zh-tw
translation.priority.mt
cs-cz
pl-pl
pt-br
tr-tr

Largest Array Size

ANSI 3.3.3.4, 4.1.1 The type of integer required to hold the maximum size of an array — that is, the size of size_t

The size_t typedef is an unsigned int on the 32-bit x86 platform. On 64-bit platforms, the size_t typedef is an unsigned __int64.

See Also

Arrays and Pointers