Signature |
void swap (int *a, int *b) |
---|---|
Parameters |
|
Return |
|
Description |
A brief API description. |
Details / Examples |
A bit longer API descrption that contains some examples int a = 5; int b = 9; swap(&a, &b); The result of the above example would be a = 9, b = 5; if (a > b) { swap(&a, &b); } |