Code:
struct X
{
      char a[10];
      char b[10];
};

struct X x;
memset(&x,0x20,sizeof(x));
will it initialize all the variable in structure to spaces?