VertitimeX Technologies

C Structure.

When a struct type is declared, no storage or memory is allocated.
To allocate memory of a given structure type and work with it, we need to create variables.
Here's how we create structure variables:
    struct Student {
    // code
    };

    int main() {
    struct Student student1, student2;
    return 0;
    }