Option 1:
typedef struct s{
int x;
double y;
char z;
}mystruct;
Option 2:
typedef struct {
int x;
double y;
char z;
}mystruct;
What's the difference between these 2 options?