mirror of
https://gitlab.com/mfocko/CodeWars.git
synced 2024-11-09 11:09:07 +01:00
5 lines
127 B
C
5 lines
127 B
C
int getAge(const char *inputString)
|
|
{
|
|
// return correct age (int). Happy coding :)
|
|
return (int) inputString[0] - 48;
|
|
}
|