Problem C: 函数的指针参数:交换两个整数

Problem C: 函数的指针参数:交换两个整数

Time Limit: 1 Sec  Memory Limit: 128 MB
Submit: 106  Solved: 95
[Submit] [Status] [Web Board] [Creator:]

Description

使用自定义函数swap(int *a,int *b);交换两个整型变量的值
函数的参数:两个指针分别指向两个整型变量,函数执行完毕,使得*a与*b的值交换

Sample Input Copy

100 10

Sample Output Copy

10 100

HINT

用于测试函数的源程序: 

#include<stdio.h> 
int main() 

    int a,b; 
    scanf("%d%d",&a,&b); 
    swap(&a,&b); 
    printf("%d %d\n", a, b );