int compare_arrays(int *p, int *q, int n) { int i; for (i = 0; i < n; i++) if (p[n] != q[n]) return 0; return 1; }