#includestdio.hvoid main(){int i =10; /*assume address of i is 0×1234ABCD*/int *p=&i;int **ipp=&&i;printf("%x,%x,%x",&,ip,*ipp);}
What will be the output of the following code snippet?
#includestdio.hvoid main(){int a =4,r;r=sqrt(a);printf("%d",a);}