Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6885227
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T05:36:29+00:00 2026-05-27T05:36:29+00:00

In C++11 it is possible to create a function which returns the size (number

  • 0

In C++11 it is possible to create a function which returns the size (number of elements) of a built-in one dimensional array at compile time using constexpr. Example below:

template <typename T, std::size_t N>
constexpr std::size_t size(T (&array)[N])
{
     return N;
}

This is a superior alternative to ARRAY_SIZE and similar macros imo.

However, this will only return the size of the most significant dimension of a built-in multidimensional array.

I use the following function for determining the size of a built-in two dimensional array:

template <typename T, std::size_t N, std::size_t N2>
constexpr std::size_t size(T (&array)[N][N2])
{
     return N * N2;
}

Ideally, it would be very useful to have a function that returns the size of a built-in array with an arbitrary number of dimensions. I thought variadic templates may help but I couldn’t see a way of unpacking the template paramters as only one argument is passed. Is such a function possible?

Thanks in advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T05:36:30+00:00Added an answer on May 27, 2026 at 5:36 am
    #include <type_traits>
    #include <cstdlib>
    
    template <typename T>
    constexpr size_t size(const T&) noexcept
    {
        return sizeof(T)/sizeof(typename std::remove_all_extents<T>::type);
    }
    

    Example:

    #include <cstdio>
    int main()
    {
        int a[3][4][7][12];
        char f[6];
    
        printf("%lu == %ld ?\n", size(a), 3*4*7*12);
        printf("%lu == %ld ?\n", size(f), 6);
    
        return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to create a SQL Server function which returns a nullable string?
Is it possible to create a template function that takes a variable number of
Is the following possible in SQL Server 2000? CREATE FUNCTION getItemType (@code varchar(18)) RETURNS
It is possible to create a Lua module which returns multiple results via the
I'm trying to create a function which takes an array as an argument, adds
Is it possible to create an inline lambda using boost which always throws an
It's possible to call C functions through CREATE FUNCTION but how can .NET functions
I know it's possible to create a friend function in C++: class box {
Is it possible to create federated Subversion servers? As in one server at location
I'm trying to truncate a decimal part. I mean create a function which do

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.