Question from the Language C - Fundamentals test

Fix the compilation error in this C code.

Waiting for validation
Original question

What needs to be changed in this code to make the compilation work?

    struct Table
    {
        char[100] = name;
        double width;
        double length;
        double heigth;
    }
New question

What needs to be changed in this code to make the compilation work?

    struct Table
    {
        char   name[100];
        double width;
        double length;
        double heigth;
    }
Author: Antonin BrauerStatus: Waiting for validation(Update)Question not yet passed
0
Community EvaluationsNo one has reviewed this question yet, be the first!