What will be the output of the following C code? #include void main() { int k = 5; int *p = &k; int **m = &p; printf('%d%d%d\n', k, *p, **m); } - Study24x7
Social learning Network
study24x7

Default error msg

Login

New to Study24x7 ? Join Now
Already have an account? Login
04 Dec 2020 06:47 PM study24x7 study24x7

 What will be the output of the following C code? #include <stdio.h> void main() { int k = 5; int *p = &k; int **m = &p; printf("%d%d%d\n", k, *p, **m); }

A

5 5 5

B

5 5 junk value

C

5 junk junk

D

Run time error

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles