00_assignment.c 231 B

12345678910111213141516171819
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a;
  5. a = 42;
  6. printf("%d\n", a);
  7. int b = 64;
  8. printf("%d\n", b);
  9. int c = 12, d = 34;
  10. printf("%d, %d\n", c, d);
  11. return 0;
  12. }
  13. // vim: set expandtab ts=4 sw=3 sts=3 tw=80 :