summaryrefslogtreecommitdiffstats
path: root/1/2.c
blob: 6d7a762dda492eef3423c2bba9abbef2e9610caa (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;
}