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

  • SEARCH
  • Home
  • 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 8935869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:05:22+00:00 2026-06-15T10:05:22+00:00

Possible Duplicate: How can I get the size of an array from a pointer

  • 0

Possible Duplicate:
How can I get the size of an array from a pointer in C?
How can I get the size of a memory block allocated using malloc()?

void func( int *p)
{
      // Add code to print MEMORY SIZE which is pointed by pointer p.
}
int main()
{
      int *p = (int *) malloc(10 * sizeof(int));
      func(p);
}

How can we find MEMORY SIZE from memory pointer P in func() ?

  • 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-06-15T10:05:23+00:00Added an answer on June 15, 2026 at 10:05 am

    You cannot do this in a portable manner in C. It may not be stored anywhere; malloc() could reserve a region much larger than you asked for, and isn’t guaranteed to store any information about how much your requested.

    You either need to use a standard size, such as malloc(ARRAY_LEN * sizeof(int)) or malloc(sizeof mystruct), or you need to pass the information around with the pointer:

    struct integers {
        size_t count;
        int *p;
    };
    
    void fun(integers ints) {
        // use ints.count to find out how many items we have
    }
    
    int main() {
        struct integers ints;
        ints.count = 10;
        ints.p = malloc(ints.count * sizeof(int));
        fun(ints);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicates: How can I get the size of an array from a pointer
Possible Duplicate: How to get the size of dynamically allocated 2d array I can't
Possible Duplicate: programatically get the file size from a remote file using delphi, before
Possible Duplicate: How to get memory block length after malloc? If I have a
Possible Duplicate: Use templates to get an array's size and end address Can someone
Possible Duplicate: Data transfer from JavaScript to PHP. How can i get the browser's
Possible Duplicate: Pointer to local variable Can a local variable's memory be accessed outside
Possible Duplicate: Can I get more than 1000 records from a DirectorySearcher in Asp.Net?
Possible Duplicate: Get total size of folders with find & du I can use
Possible Duplicate: How can I get a specific parameter from location.search? I have a

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.