Qmark: 1
Total Marks: 50
Font: Microsoft Sans Serif
Vol: 8
Size: 10
Time Left: 51:39
Multiple Choices
(Choose 1 answer)
What is the output when the sample co
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
Ε. 12 12