4 4 votes What is the output of this C code? #include<stdio.h> void main() { int k=5; int *p=&k; int **m=&p; printf("%d %d %d",k,*p,**m); } 5 5 5 5 5 junk 5 junk junk compile time error Programming in C programming-in-c pointers isro2016 + – sourav. 5.2k views answer comment Share Follow Print 0 reply Please log in or register to add a comment.
Best answer 14 14 votes correct answer is A :- 5 5 5 Pankaj kumar answered Jul 6, 2016 • selected Jul 11, 2016 by shekhar chauhan Pankaj kumar comment Share Follow 0 reply Please log in or register to add a comment.
4 4 votes correct answer is A)5 5 5 (basic programming concepts) sourav. answered Jul 3, 2016 sourav. comment Share Follow 0 reply Please log in or register to add a comment.
2 2 votes hope it might help........... akash.dinkar12 answered Apr 7, 2017 akash.dinkar12 comment Share Follow 0 reply Please log in or register to add a comment.
0 0 votes 5,5,5 akankshadewangan24 answered Apr 19, 2017 akankshadewangan24 comment Share Follow See all 2 Comments 2 2 Comments reply Warrior commented May 1, 2017 reply Follow flag plz check comma is not present there..output must be 5 5 5 0 0 replyShare akankshadewangan24 commented May 3, 2017 reply Follow flag yes comma will not be there 0 0 replyShare Please log in or register to add a comment.