how to Write a generic program in C++ that can sort list float as well integer array?
Answers
Answered by
0
Explanation:
Input : 2000, 456, -10, 0
Output : -10 0 456 2000
Input : "We do nothing"
"Hi I have something"
"Hello Join something!"
"(Why to do work)"
Output :(Why to do work)
Hello Join something!
Hi I have something
We do nothing
Similar questions