Help with converting from value to letter

I need to be able to convert from int asci value to char letters. . I wrote this function, but it tells me it is an invalid conversion (even though I don't think I performed any type conversions).
Last edited on
Use single quotes instead of double. Single quotes are for characters, double quotes are from C-strings.
"A" is a const string. you are trying to return a char, use 'A'.
Got it working. Thanks!
Topic archived. No new replies allowed.