What is the valid statement that you can make about the output of - TopicsExpress



          

What is the valid statement that you can make about the output of the following code? #include void fun(int * a) { int ** x=&a; printf(%u\n,x); return ; } int main(){ int a[5]={1,2,3,4,5}; int * b = a; int ** y=&b; printf(%u\n,y); fun(b); return 0; } a) Both the printed values are necessarily the same b) Both the printed values are necessarily different c) Both the printed values may be same d) None of these
Posted on: Wed, 08 Oct 2014 07:07:56 +0000

Trending Topics



Recently Viewed Topics




© 2015