solutions/The C Programming Language/1.2.c

8 lines
96 B
C
Raw Normal View History

2024-04-16 19:13:00 -04:00
#include <stdio.h>
main()
{
// "Unknown escape sequence"
printf("i am breaking this\j\n");
}