4.9.c 171 B

123456789
  1. #include <stdio.h>
  2. int main()
  3. {
  4. char pattern = "ould"; //does not actually compile . this is a difference between K&R and GCC C
  5. printf("%s", pattern);
  6. return 0;
  7. }