Which piece of code will return the ASCII value of a character?
(int)'t';
ord('t');
to_ascii('t');
chr('t');
Submit