Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Working with the Array | Variables and Data Types
C++ Introduction

Working with the ArrayWorking with the Array

Reminder how to access an array by index

cpp

main.cpp

Note

Index counting starts from zero, making the first element in a list or array the zeroth element.

Tarea

  • Declare a string array with a size of 5;
  • Initialize the array with the following values:
    • First element: "!";
    • Second element: "World";
    • Third element: ",";
    • Fourth element: "Hello";
    • Fifth element: " ".
  • Construct the message by arranging the elements of the array in the correct order ("Hello, world!")and then set it to the value of the message variable;
  • Output the constructed message.

¿Todo estuvo claro?

Sección 2. Capítulo 7
toggle bottom row
course content

Contenido del Curso

C++ Introduction

Working with the ArrayWorking with the Array

Reminder how to access an array by index

cpp

main.cpp

Note

Index counting starts from zero, making the first element in a list or array the zeroth element.

Tarea

  • Declare a string array with a size of 5;
  • Initialize the array with the following values:
    • First element: "!";
    • Second element: "World";
    • Third element: ",";
    • Fourth element: "Hello";
    • Fifth element: " ".
  • Construct the message by arranging the elements of the array in the correct order ("Hello, world!")and then set it to the value of the message variable;
  • Output the constructed message.

¿Todo estuvo claro?

Sección 2. Capítulo 7
toggle bottom row
some-alt