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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T19:57:25+00:00 2026-05-11T19:57:25+00:00

Is it possible to determine the size of an array if it was passed

  • 0

Is it possible to determine the size of an array if it was passed to another function (size isn’t passed)? The array is initialized like int array[] = { XXX } ..

I understand that it’s not possible to do sizeof since it will return the size of the pointer .. Reason I ask is because I need to run a for loop inside the other function where the array is passed. I tried something like:

for( int i = 0; array[i] != NULL; i++) {
........
}

But I noticed that at the near end of the array, array[i] sometimes contain garbage values like 758433 which is not a value specified in the initialization of the array..

  • 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-11T19:57:26+00:00Added an answer on May 11, 2026 at 7:57 pm

    The other answers overlook one feature of c++. You can pass arrays by reference, and use templates:

    template <typename T, int N>
    void func(T (&a) [N]) {
        for (int i = 0; i < N; ++i) a[i] = T(); // reset all elements
    }
    

    then you can do this:

    int x[10];
    func(x);
    

    but note, this only works for arrays, not pointers.

    However, as other answers have noted, using std::vector is a better choice.

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

Sidebar

Related Questions

I am curious whether it is possible to determine the maximum size that an
Possible Duplicate: Determine original name of variable after its passed to a function. I
Is it possible to have an array with size that is determined at runtime
The C standard guarantees that an int is able to store every possible array
Possible Duplicate: How do I determine if an array is initialized in VB6? I
Is it possible to determine the byte size of a scipy.sparse matrix? In NumPy
Possible Duplicate: In Java, what is the best way to determine the size of
Is it possible to determine a specific file's fragmentation status (that is, the amount
Is it possible to determine whether or not Javascript is running in a Web
Is it possible to determine the size of a C++ class at compile-time? I

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.