A free-standing block statement
#include <stdio.h> int main(void) { int i; { i = 1; printf("%d", i); } return 0; }