#include <stdio.h>
void compara(int *a, int *b,int *maior);
int main(){
int x=5, y=8, z=0;
printf("x = %d y = %d z = %d",x,y,z);
compara(&x,&y,&z);
printf("\nx = %d y = %d z = %d",x,y,z);
getch();
}
void compara(int *a, int *b,int *maior){
*maior=(*a >= *b)? *a: *b;
}
Trabalhos.:
E-mail: mvf5system@gmail.com
Blog: http://mvf5-system.blogspot.com.br/
Facebook: https://www.facebook.com/mvf5systems
0 comentários:
Postar um comentário