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


Please Help Members By Posting Answers For Below Questions

Why isn't it being handled properly?

821


What is meant by type specifiers?

869


Explain how are 16- and 32-bit numbers stored?

995


Explain 'bus error'?

759


can we implement multi-threads in c.

857


What is the difference between declaring a variable by constant keyword and #define ing that variable?

2986


Differentiate between new and malloc(), delete and free() ?

878


Difference between constant pointer and pointer to a constant.

809


How can I get random integers in a certain range?

774


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

974


What does typedef struct mean?

833


What is the advantage of an array over individual variables?

956


How can I remove the trailing spaces from a string?

795


Explain that why C is procedural?

873


Explain output of printf("Hello World"-'A'+'B'); ?

1153