EDIT: I'm sorry for my mistakes in my code snippets, now I see both outputs were same. Below is an edited version.
Let's say I have a structure:
typedef struct
{
char m[5];
char f[6];
} COUPLE;
And a file containing just phrase RomeoJuliet that I read into an array:
char *data = malloc(11);
FILE *f = fopen("myfile", "rb");
fread(data, 1, 11, f);
fclose(f);
I always use this code when I need to fill my structure from a byte array:
COUPLE titanic;
memcpy(&titanic, data, sizeof(data));
printf("%s and %s", titanic.m, titanic.f);
This works fine, but really my byte array can be very big, so below is my attempt to optimize my code.
COUPLE *titanic = (COUPLE *)data;
printf("%s and %s", titanic->m, titanic->f);
So, my questions are:
- (obsolete) Why do I get different outputs?
- (obsolete) How can I fill a structure just by casting from an array?
- Should I avoid this kind of optimization?
- Are there possible pitfalls in it?
COUPLE titanic = { "Romeo", "Juliet" }(minus the problem in your struct that @In silico hinted at). You may be able to define aunionfor your purposes, but I agree with @sbi - I suspect you're trying to solve a non-problem. I also doubt very much that your first example works as you say it does. – pmjordan Mar 27 '11 at 20:46COUPLEare not big enough to properly store "Romeo" and "Juliet" respectively. – In silico Mar 27 '11 at 20:47