Forum: C Oct 14th, 2004 |
| Replies: 17 Views: 4,574 Greetings,
If I understand correctly, you want to find which of the totals are shortest. Like from minimum to maximum, e.g. A is less than B so B is greater; B is greater than C so C is less than... |
Forum: C Sep 18th, 2004 |
| Replies: 13 Views: 370,740 Greetings,
This process is not hard since the default libraries included a function to do this. It's called itoa().
ยป char *itoa(int value, char *buffer, int radix);
Converts an integer value... |
Forum: C Sep 14th, 2004 |
| Replies: 8 Views: 5,749 Greetings,
I did see a few errors that evidently caught my attention.
Firstly, on line 6 of your posted code you have the following:
int side1 = 0;
Though 4 lines later, [or line 10], you... |