Q:

Assume the output #include int main() { int x = 10, *y, **z; y = &x; z = &y; printf("%d %d %d", *y, **z, *(*z)); return 0; }

0

Assume the output

#include int main() { int x = 10, *y, **z; y = &x; z = &y; printf("%d %d %d", *y, **z, *(*z)); return 0; }


  1. 100xaa54f10
  2. Compiler Error
  3. 10 10 10
  4. Runtime Error

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Correct Answer:

10 10 10

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C Programming Multiple Choice Questions And Answers

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Pick up the false statement... >>
<< Guess the output void main() { char a = 'a�...