struct some_struct{ int a; }; some_struct n = {};
n.a will be 0 after this;
I know this braces form of initialization is inherited from C a
I find the following link to be very informative on this particular issue