Code Snippets C

#include
main() {
int j = 10;
{
int j = 0;
for( j=0;j<2;j++) {
printf("j = %d\n",j);
}
}
printf("j = %d\n",j);
}