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
funciones matrices
CONTADOR DE PALABRAS
factorial using function in c
MULTI-CAST
Dynamic array
Assignment 8 pt 2
709 lab 3.1
150109_RecursividadFactorial
PuntosTriangulo
ex1