test.cpp 209 B

1234567891011121314151617181920
  1. const unsigned int c = 3;
  2. unsigned int c = 3;
  3. int c = 3;
  4. int main(int a = 1, int b = -2)
  5. {
  6. const unsigned int c = 3;
  7. for (int i = 0; i < 100; ++i)
  8. {
  9. }
  10. while (1)
  11. {
  12. a = 4;
  13. }
  14. }