So I'm trying to make a game, and I have a struct where I put all the information about the players. That's my struct:

struct player{
   int startingCapital;
   int currentCapital;
   int startingPosition;
   int currentPosition;
   int activePlayer; 
   int canPlay;      
};

And that's my main:

#include <stdio.h>
#include <stdlib.h>
#include "header.h"


int main(int argc, char *argv[])
{  int s,i,numOfPlayers;
   struct player *players;
    printf("Give the number of players: \n");
    scanf("%d",&numOfPlayers);

    players = (struct player *)calloc(numOfPlayers,sizeof(struct player));


   system("PAUSE"); 
  return 0;
}

So as you can see, I'm asking the user to give the number of players and then I try to allocate the needed memory. But I'm getting this compiler error that I can't figure out. invalid application of sizeof' to incomplete typeplayer'

link|improve this question

What's in header.h ? – Aaron McDaid Jan 18 at 18:20
Have you declared struct player in header.h? – MetallicPriest Jan 18 at 18:23
If header.h contains the definition of "player", this program should compile fine, both in C and C++ – Renan Greinert Jan 18 at 18:25
feedback

2 Answers

up vote 2 down vote accepted

It means the file containing main doesn't have access to the player structure definition (i.e. doesn't know what it looks like).

Try including it in header.h or make a constructor-like function that allocates it if it's to be an opaque object.

EDIT

If your goal is to hide the implementation of the structure, do this in a C file that has access to the struct:

struct player *
init_player(...)
{
    struct player *p = calloc(1, sizeof *p);

    /* ... */
    return p;
}

However if the implementation shouldn't be hidden - i.e. main should legally say p->canPlay = 1 it would be better to put the definition of the structure in header.h.

link|improve this answer
In the header I just put "struct player;" I didn't like it in the beginning but when I do something like players.startinCapital=1500 I don't get an error and it prints the result without a problem. So basically I have to make a function which constructs the struct? – captain Jan 18 at 18:24
@captain put the complete declaration of the struct player type in your header.h file – ouah Jan 18 at 18:26
@ouah I did this an it works. What should I put inside the init_player? – captain Jan 18 at 18:31
feedback

It looks like your main doesn't see the definition of the players struct. Is it included in header.h?

link|improve this answer
yes, but obviously not the way it shoulb be... – captain Jan 18 at 18:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.