Answers for "empty array in c++"

C++
-1

how to array in c++

int foo [5] = { 16, 2, 77, 40, 12071 };
Posted by: Guest on December-02-2020
-1

how to empty an array c++

std::fill_n(array, elementCount, 0);
Posted by: Guest on August-23-2021

Browse Popular Code Answers by Language