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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T00:14:18+00:00 2026-06-13T00:14:18+00:00

Please know that I’m still very new to C and pointers in general… This

  • 0

Please know that I’m still very new to C and pointers in general… This is for a class so I’m not asking for explicit code, only help understanding the concepts.

I’m trying to create a loop to assign random values to an int within a struct. The problem occurs when I’m assigning values to the current iteration of my pointer or array.

struct student{
    int id;
    int score;
};

struct student* allocate(){
    /*Allocate memory for ten students*/
    int ROSTER_SIZE = 10;
    struct student *roster = malloc(ROSTER_SIZE * sizeof(struct student));

    /*return the pointer*/
    return roster;
}

void generate(struct student* students){
    /*Generate random ID and scores for ten students, ID being between 1 and 10, scores between 0 and 100*/
    int i = 0;

    for (i = 0; i < 10; ++i) {
        students[i]->id = i + 1;
        students[i]->score = rand()%101;
}

Now, from my understanding, which is most likely incorrect, I should be able to use students[i] to assign values to each iteration, but VS 2010 tells me “the expression must have a pointer type.” Isn’t it already a pointer? It’s passed into the function as a pointer, right?

  • 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-13T00:14:19+00:00Added an answer on June 13, 2026 at 12:14 am

    Change:

    students[i]->id = i + 1;
    students[i]->score = rand()%101;
    

    to:

    students[i].id = i + 1;
    students[i].score = rand()%101;
    

    Reason: students is a pointer to an array of struct student. students[i] is an an actual struct student. Note that students[i] is actually equivalent to *(students + i).

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

Sidebar

Related Questions

Please note that I'm not asking how but why. And I don't know if
OK, I know that this has been asked previously, so please forgive me for
so I know that the TabWidget does not create new activities on each tab
I know that this question is being asked before but I did not get
This is for homework but please know that I have looked online for help
I know that probably there is no concept of scope for macros, but please
Can anybody please let me know that where do the trace flag results get
Can any one please let me know that, I need to add a column
Can any one please let me know that, i need to open a gmail
I'm using UNLINK with PHP and AJAX . I know that in this way

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.