Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
A_141212_IntercambiarValores
//Title of this code #include <stdio.h> void intercambiarValores(short *x, short *y); int main(void) { short a = 5, b = 2; intercambiarValores(&a, &b); printf("\n\na = %hd ; b = %hd\n\n", a, b); return 0; } void intercambiarValores(short *x, short *y) { short aux = *x; *x = *y; *y = aux; printf("\n\tx = %hd ; y= %hd\n", *x, *y); return; }
run
|
edit
|
history
|
help
0
A_141124arrayRepetidos
Mutex Safe
void *
Project 5 v.08
No Pyramid toggle
C_141127_MatrizProducto
FUNCION strstr()
A_141128_MatricesProducto
BST
14th Feb Project v0.3