Added escape sequences

This commit is contained in:
Eduard Urbach 2024-07-31 17:50:31 +02:00
parent cdbfa744b7
commit c8824e699a
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
12 changed files with 87 additions and 7 deletions

View file

@ -0,0 +1,9 @@
main() {
assert '\0' == 0
assert '\t' == 9
assert '\n' == 10
assert '\r' == 13
assert '\"' == 34
assert '\'' == 39
assert '\\' == 92
}