hello.c 126 B

123456789
  1. int main(void)
  2. {
  3. int x = 1, b = 5, d = x + b, e = x + 10;
  4. double y = 2., z = 3.5;
  5. char c = 'a';
  6. return 0;
  7. }