Im attempting to write a program in C
Given an input of three unique, non negative int type numbers, the program should sort them and output them sorted in an increasing order. For this program, only the basic mathematical constructs are permitted. (+,-,/,*,%)
Example of an input would be:
Input three integer numbers: 32 29 21
And then, the example output should be:
Sorted numbers: 21 29 31
The use of logical operators, like > < and == as well as selection statements if for and switch is explicitly not allowed.