Output of C programs | Set 42
QUE.1 What is the output of following program? C/C++ Code #include <stdio.h> int main() { int x = 10, *y, **z; y = &x; z = &y; printf("%d %d %d", *y, **z, *(*z)); return 0; } a. 10 10 10 b. 100xaa54f10 c. Run time error d. No Output Answer : a Explanation: Because y contains