Is there a function that can return both an integer and a character? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Is there a function that can return both an integer and a character?

2nd Jun 2018, 2:05 PM
Vikram
Vikram - avatar
3 Answers
+ 4
Pretty sure you can do this using a vector. Also, if the char and int are related to one another (the same value, just different number/ascii bases), you could just return one of them, duplicate the returned value, and then convert the duplicate.
2nd Jun 2018, 6:20 PM
Fox
Fox - avatar
+ 1
It really depends on what you mean: If you want to return both int and char at the same type, you can't do it directly, but you can return something like pair and store values in it (but you will have to treat it differently) If you want to return either int or char depending on arguments, you can do that with overloading. If you want to return either int or char, but function to have same parameters, then you can't. You could do it in dynamically typed languages (but you really shouldn't)
2nd Jun 2018, 8:52 PM
BlazingMagpie
BlazingMagpie - avatar
0
you could define a struct that contains a char and an int and use that struct as return type or return a std::tuple<char,int> http://en.cppreference.com/w/cpp/utility/tuple even fancier: return std::tuple<std::optional<char>,std::optional<int>> http://en.cppreference.com/w/cpp/utility/optional
2nd Jun 2018, 3:03 PM
Max
Max - avatar