summaryrefslogtreecommitdiffstats
path: root/1/2.c
blob: 4a94c617487b5283e58cf62c596fb68e66aee2b6 (plain)
1
2
3
4
5
6
7
#include <stdio.h>

/* prints a formatted string containing an invalid escape sequence */
int main(int argc, char *argv[]) {
  printf("hello \c world\n");
  return 0;
}