Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 710 Bytes

largest-array-size.md

File metadata and controls

23 lines (21 loc) · 710 Bytes
title ms.custom ms.date ms.reviewer ms.suite ms.technology ms.tgt_pltfrm ms.topic dev_langs ms.assetid caps.latest.revision author ms.author manager
Largest Array Size | Microsoft Docs
11/04/2016
cpp-language
article
C++
4c782cf6-73f3-40b0-b306-229d22da4ee1
8
mikeblome
mblome
ghogen

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