wiki.c 196 B

12345678910111213141516
  1. #include <stdio.h>
  2. int main(void)
  3. {
  4. int a = 3, b = 5, d = 5, x = 100;
  5. int c;
  6. if (a > b)
  7. {
  8. int c = a + b;
  9. d = 2;
  10. }
  11. c = 4;
  12. return b * d + c;
  13. }