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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T11:49:25+00:00 2026-06-17T11:49:25+00:00

C question Hi, I am passing a double pointer to a function to allocate

  • 0

C question

Hi,

I am passing a double pointer to a function to allocate a double array and initialise the array inside the function with lets say 10.10;

I do the following but get segmentation fault when I access the array in main;

void function(double **array, int size){

    *array = (double*) malloc(size * sizeof(double)); 
    int i;
    for(i=0;i<size;i++){
    *array[i] = 10.10;
    }


}

int main(){

    double *array = NULL;

    function(&array,20);
    printf("array[0] = %lg\n",array[0]);// here is where I get segmentation fault


}

Any help ?

  • 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-17T11:49:26+00:00Added an answer on June 17, 2026 at 11:49 am
    *array[i]
    

    doesn’t mean what you think it does (look it up using a C operator precedence table).

    Instead of unreadable, ugly and confusing (yes, it just confused you) code, use a temporary variable (and do not for the love of God cast the return value of malloc!):

    void function(double **array, int size)
    {
        if (array == NULL) return;
    
        double *tmp = malloc(size * sizeof(*tmp)); 
        if (tmp == NULL) {
            *array = NULL;
            return;
        }
    
        int i;
        for (i = 0; i < size; i++) {
            tmp[i] = 10.10;
        }
    
        *array = tmp;
    }
    

    Also, return 0; from main(). Really.

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

Sidebar

Related Questions

Possible Duplicate: passing 2D array to function My question is related to passing an
After reading this question here: Passing one Dimension of a Two Dimensional Array in
I have a question about passing parameters in Tcl regarding to the following code:
I just posted this question jQuery - passing arrays in post request , where
This is a follow up to my previous question: Problem passing parameters via Iframe
My question is about passing data from kernel to a user space program. I
Question: I am having issues passing session variables from parent page to iFrame page
In relation to my last question ( Is there an easier way of passing
In an answer to another question it was mentioned that passing XML as a
Total noobie question here. I'm just learning Java, and studying passing arguments to functions.

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.