44_scoped_declarations.c 194 B

123456789101112131415161718
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a;
  5. for (a = 0; a < 2; a++)
  6. {
  7. int b = a;
  8. }
  9. printf("it's all good\n");
  10. return 0;
  11. }
  12. /* vim: set expandtab ts=4 sw=3 sts=3 tw=80 :*/