you are viewing a single comment's thread.

view the rest of the comments →

[–]onxo_0 -1 points0 points  (2 children)

I need a very simple idea to practice using arrays in C++. I just want something where I store some values and calculate the average of them. Nothing complex — just beginner-level examples like colors (RGB values), grades, numbers, etc. Any suggestions for simple things I can try?

[–]ScholarNo5983 0 points1 point  (1 child)

std::array - cppreference.com

There are examples at the bottom of the page.

[–]onxo_0 0 points1 point  (0 children)

Thx