hi every body Iam having two qs, pls give me the ans int i = -1; give me the binary of this like 8 is having binary of 1000.
second one
union{
int i;
struct{
int i;
int j;
}st;
struct{
char c;
char ch[2];
}s;
}u;
what is the size of union, how it is calculated if structers are
inside the union.
