wes d2a2ba9e15 first commit 4 years ago
..
README.md d2a2ba9e15 first commit 4 years ago
code.cpp d2a2ba9e15 first commit 4 years ago
unitTest.cpp d2a2ba9e15 first commit 4 years ago

README.md

Char-to-ASCII

by Elgin tags: numbers, algorithms, strings

Summary

Create a function that returns the ASCII value of the passed in character. Examples ctoa('A') ➞ 65 ctoa('m') ➞ 109 ctoa('[') ➞ 91 ctoa('\') ➞ 92 Notes Don't forget to return the result. If you get stuck on a challenge, find help in the Resources tab. If you're really stuck, unlock solutions in the Solutions tab.

Instructions

Create a function that returns the ASCII value of the passed in character.

Examples

ctoa('A') ➞ 65

ctoa('m') ➞ 109

ctoa('[') ➞ 91

ctoa('\') ➞ 92

Notes

  • Don't forget to return the result.
  • If you get stuck on a challenge, find help in the Resources tab.
  • If you're really stuck, unlock solutions in the Solutions tab.