Which statement about this code is true?
fn main() { let c = 'z'; let heart_eyed_cat = '😻'; }
heart_eyed_cat is an invalid expression.
heart_eyed_cat
Both are string literals.
c is a string literal and heart_eyed_cat is a character literal.
c
Both are character literals.