#include<stdio.h> int main() { int a=0, b=1; int m[2]; m[0] = a; m[1] = b; a = m[1]; b = m[0]; //printf("%d %d", a, b); return 0; }
不知道这么写对不对