Lenguaje de Programación – Práctica Nº 4 Profesor: Antonio Valenzuela N. Ayudantes: Javier Fuentealba, Rocío Sabat Universidad de Concepción Miércoles, Abril 30/2008 #include <stdio.h> #include <stdlib.h> void intercambio(int, int); int main(){ int a=1,b=2; printf("a=%d b=%d\n",a,b); intercambio(a,b); system("pause"); return 0; } void intercambio(int x, int y){ int temp; temp=x; x=y; y=temp; printf("x=%d y=%d\n",x,y); } /* prototipo */ /* llamada */ /* declaración formal */ ! " # $ % ! !