Answers for "declare an array in a function c++"

C++
-2

array syntax in c++

int foo[] = { 10, 20, 30 };
int foo[] { 10, 20, 30 };
Posted by: Guest on April-25-2020

Code answers related to "declare an array in a function c++"

Browse Popular Code Answers by Language