hello.c 176 B

1234567891011
  1. #include <stdio.h>
  2. int main(void) {
  3. int x = 1, b = 5, d = x + b, e = x + 10;
  4. double y = 2., z = 3.5;
  5. char c = 'a';
  6. printf("e: %d\n", e); // 11
  7. return 0;
  8. }