code.cpp 127 B

123456
  1. /* Create a function that returns the ASCII value of the passed in character.
  2. */
  3. unsigned short ctoa(char c) {
  4. return c;
  5. }