int m, n, o, q; int main() { int x = 9; int *p = &x; int b[] = {1, 2}; int *B = {3, 4}; m = *b; n = *p; o = *B; return 0; }