int *p=20;
if u print like dis printf("%d",p);
o\p:- 20; how is it possible?
plz give me the explanation.
Answer Posted / yogi
int *p=20;
This is like int *p;p=20;
printf("%d",p);It prints p properly as 20;
printf("%d",*p);It means deference the value at address 20,
which is invalid .
If we try to run,as address 20 is invalid and it tries to
fetch the value at address 20,signal 11 sent to that process
i.e it dumps core with segmentation fault
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Why isn't it being handled properly?
What is meant by type specifiers?
Explain how are 16- and 32-bit numbers stored?
Explain 'bus error'?
can we implement multi-threads in c.
What is the difference between declaring a variable by constant keyword and #define ing that variable?
Differentiate between new and malloc(), delete and free() ?
Difference between constant pointer and pointer to a constant.
How can I get random integers in a certain range?
The number of bytes of storage occupied by short, int and long are a) 2, 2 and 4 b) 2, 4 and 4 c) 4, 4 and 4 d) none
What does typedef struct mean?
What is the advantage of an array over individual variables?
How can I remove the trailing spaces from a string?
Explain that why C is procedural?
Explain output of printf("Hello World"-'A'+'B'); ?