Codectionary / Developer documentation / C++

C++ built-in arrays

C++ reference for c++ built-in arrays.

Syntax

int scores[] = {72, 85, 90};
int first = scores[0];

Examples

C++ built-in arrays example

A focused example you can adapt while practising.

int scores[] = {72, 85, 90};
int first = scores[0];

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