Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#include <stdio.h>
#include <stdlib.h>

typedef struct {
    char name[20];
    int age;
} employee;

int main(int argc, char** argv)
{
    struct employee em1 = {"Jack", 19};
    printf("%s", em1.name);
    return 0;
}

This doesn't seem to work because, as the compiler says, the variable has incomplete type of 'struct employee'. What's wrong?

share|improve this question

3 Answers

Remove struct from

 struct employee em1 = {"Jack", 19};

You used

typedef struct
{
char name[20];
int age;
}

with the purpose of not requiring to type struct anymore.

share|improve this answer

The problem is that you made the struct a typedef, but are still qualifying it with struct.

This will work:

 employee em1 = {"Jack", 19};

Or remove the typedef.

share|improve this answer
Removing typedef result in a error. – Armin Mar 7 at 23:26
Without the typedef it'd define a struct. It's just lacking a tag - typedef struct employee {...} employee; – teppic Mar 7 at 23:27

To use struct employee em1 = ... you need to declare the struct with a tag.

struct employee /* this is the struct tag */
{
char name[20];
int age;
} em1, em2; /* declare instances */
struct employee em3;

typedef creates a type alias which you use without the struct keyword.

typedef struct employee employee;
employee em4;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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