Question: Syntax Error ? ` ` ` typedef struct student 2 { int id; char name [ 1 2 8 ] ; double points; } STUD

Syntax Error ?
```
typedef struct student2{
int id;
char name[128];
double points;
} STUD2;
int main(void){
STUD2 st22={4, "Choi", 93.1};
st22.name = "Lee";
return 0;
}
```
STUD2 typedef,.
typedef.
,.
char name[128].
name .
Syntax Error ? ` ` ` typedef struct student 2 {

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!