#include<stdio.h>
#include<stdlib.h>
#define N 10
void Swap(int* x, int* y)
{
int tmp = *x;
*x = *y;
*y = tmp;
}
int main()
{
int a[N] = {<
#include<stdio.h>
#include<stdlib.h>
#define N 10
void Swap(int* x, int* y)
{
int tmp = *x;
*x = *y;
*y = tmp;
}
int main()
{
int a[N] = {<