devxlogo

Use C-Style Arrays as Containers

Use C-Style Arrays as Containers

C-style arrays can be passed as containers to STL algorithms. The pointers to array elements can be used as iterators.

Example:

 #include #include int main(){    int array[] = { 1, 3, 5, 7, 9, 2, 4, 6, 8, 0 };    const int array_size = sizeof array / sizeof array[0];    std::sort(array, array + array_size);    for (int i = 0; i 7lt; array_size; ++i)        std::cout << array[i] << ' ';    std::cout << std::endl;    return 0;}
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist