I have this piece of code, can it ever evaluate to true?
struct type {
char a;
int b;
char c;
float d;
} t;
char e;
int f;
char g;
float h;
int out = sizeof(t) == sizeof(e) + sizeof(t) + sizeof(g) + sizeof(h);
print("%d", out);
I have this piece of code, can it ever evaluate to true?
struct type {
char a;
int b;
char c;
float d;
} t;
char e;
int f;
char g;
float h;
int out = sizeof(t) == sizeof(e) + sizeof(t) + sizeof(g) + sizeof(h);
print("%d", out);