int x = ({ int y = 10; if (2>1) { int z = 11; } y+z; });
x will be 21. What is this syntax? I\'ve seen it in C a
x