Run Code
|
API
|
Code Wall
|
Misc
|
Feedback
|
Login
|
Theme
|
Privacy
|
Patreon
B_141212_IntercambiarPunteros
//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\n", a, b); return 0; } void intercambiarValores(short*x, short*y) { short aux = *x; *x = *y; *y = aux; return; }
run
|
edit
|
history
|
help
0
Sumit
C pattern Rhombus
cstructCricPoint
Arrays Grtade and Toppers
Función bsearch para cadenas
% with negative numerator and positive denominator (gcc)
formatting_input_and_output
K&R/1_5
18BCE2182 ASSESS_1 Q1-3
Prgm