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 6363445
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:02:23+00:00 2026-05-25T00:02:23+00:00

This question comes from this one: c++ pass array to function question but since

  • 0

This question comes from this one:

c++ pass array to function question

but since the OP accepted an answer I guess nobody will read it now.

I tried this code on g++. It seems that the array does not decay to a pointer when passed to this function (the function returns the proper result):

#include <iostream>

template <typename T>
std::size_t size_of_array (T const & array)
{
   return sizeof (array) / sizeof (*array);
}

int main ()
{
    int a [5];
    std::cout << size_of_array (a) << '\n';
}

Another user (sharptooth) said he have the same behavior on VC++ 10 with inlining off.

Can somebody explain? Thanks.

  • 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-25T00:02:24+00:00Added an answer on May 25, 2026 at 12:02 am

    Array decay doesn’t just happen — it only happens when the program would fail to compile without it. When you pass an array by reference, there simply is no need for decay to kick in.

    Note that the function template can also be written without dividing ugly sizeof expressions:

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

    When a client calls size_of_array, T and N are automatically deduced by the template machinery.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This question comes from my experience with the following question: https://stackoverflow.com/questions/492748/new-responses-icon-on-so-crashes-ie7-closed In that question,
I have a language-agnostic question about an algorithm. This comes from a (probably simple)
This may be a bit of daft question, but I don't come from an
This question comes close to what I need, but my scenario is slightly different.
( Late edit: This question will hopefully be obsolete when Java 7 comes, because
This question comes from a range of other questions that all deal with essentially
The accepted answer to this question , and a similar discussion at work today
This question has been puzzling me for a long time now. I come from
This question comes on the heels of the question asked here . The email
Okay, this question comes through a friend so it might be lost in translation...

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.