609 views

1 Answer

1 votes
1 votes

Here is some sort of explanation 

Related questions

1 votes
1 votes
0 answers
1
K ANKITH KUMAR asked Aug 10, 2018
1,203 views
#include <stdio.h>main(){ int arr[5]; printf("%p,%p\n",arr,&arr);}How do both print the same address?
0 votes
0 votes
0 answers
2
gmrishikumar asked Jan 2, 2019
833 views
#include<stdio.h>int main ( ){ int demo ( ); // What is this and what does it do? demo ( ); (*demo) ( );}int demo ( ){ printf("Morning");}
0 votes
0 votes
1 answer
3
Chhotu asked Nov 20, 2017
520 views
Hi,Why multiple dereferencing is not creating problem in the following program ?https://ideone.com/3Li06v (Check line 1,2 & 3. all are giving same O/P)