Monday, November 2, 2009

CODIES 1.1

Point out the difference between the two structure declarations:

struct one
{
char charA;
short shortA;
char charB;
long longA;
char charC;
}

struct two
{
long longA;
char charA,charB,charC;
short shortA;
}

A good detailed explanation wins a treat !!!