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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T07:40:15+00:00 2026-06-14T07:40:15+00:00

struct LeafDataEntry { void *key; int a; }; int main(){ //I want to declare

  • 0
struct LeafDataEntry   
{
    void *key;
    int a;
};


int main(){

    //I want to declare a vector of structure
    vector<LeafDataEntry> leaves;

    for(int i=0; i<100; i++){
       leaves[i].key = (void *)malloc(sizeof(unsigned));
       //assign some value to leaves[i].key using memcpy
    }

}

I am getting SEG FAULT error for this code while doing the malloc in for loop above….Any suggestions for any alternative to assign memory to the pointer in the vector of structs.

  • 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-14T07:40:16+00:00Added an answer on June 14, 2026 at 7:40 am

    It is because you are trying to assign to a vector which does not have the elements yet. Do this instead:

    for(int i=0; i<100; i++){
        LeafDataEntry temp;
        leaves.push_back(temp); 
        leaves[i].key = (void *)malloc(sizeof(unsigned));
        //assign some value to leaves[i].key using memcpy
     }
    

    That way you will be accessing actual memory.

    In the comments the OP mentioned that the number of elements in the array will be decided at runtime. You can set i < someVar which will allow you to decide someVar and the size of the list at runtime.

    The other answer

    leaves.resize(someVar) //before the loop
    

    Is probably a better way to go though because it is likely that it will be more efficient.

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

Sidebar

Related Questions

struct DummyStruct{ unsigned long long std; int type; }; DummyStruct d; d.std = 100;
struct X{}; template<class T> decltype(X() == int()) f(T const&){ return true; } int main(void)
struct node { double a : 23; int b; }s; int main() { printf(%d\n,sizeof(s));
struct test{ unsigned long int asd[][3][6]; }; sizeof(struct test) returns 0. So, if that
struct pointsto_val_def { unsigned int lhs; bitmap rhs; struct pointsto_val_def *next; }; typedef struct
struct Data { int Id; std::vector<int> SomeData } std::vector<Data> dataList = .... int wantedIndex
struct A { int a; virtual void print() {} }; struct B : A
struct Test { int var; char *arr; } int main() { Test a; a.arr
struct X { X():mem(42){} void f(int param = mem) //ERROR { //do something }
struct ponto *ps = malloc( sizeof(struct ponto) * colunas * linhas ); I had

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.