Answer (Choose 1 answer)
What is the output when the sample code below is executed?
void foo(int *z) { return(m+2);}
int main() { int a=45, *b, m = 10;b=foo(&a);printf("%d %b", a, b);return 0;
}
A. 45 12
B. 45 10
C. 10 45
D. compile error
E. 12 12
Exit 24