Codectionary / Developer documentation / C++

C++ std::array

C++ reference for c++ std::array.

Syntax

#include <array>
std::array<int, 3> scores{72, 85, 90};

Examples

C++ std::array example

A focused example you can adapt while practising.

#include <array>
std::array<int, 3> scores{72, 85, 90};

Best practices

  • Start with the smallest working example, then adapt it to your project.
  • Use the language’s standard library and idioms before introducing extra dependencies.

At a glance

Purpose
Systems and general-purpose software
File extension
.cpp · .hpp
Runs in
Compiled native applications
Usually used with
Compiler and standard library

Specifications & further reading

Related C++ documentation