+ 2
Which date type is '😂' in C language?
1 Antwort
+ 3
C encodes text as ASCII by default which means it can't display emotes by default. There are some workarounds however: https://www.cprogramming.com/tutorial/unicode.html
Or you use Rust which is similar low-level language as C but encodes chars and strings as unicode by default :)