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 / udanesh
int *p=20 means
int *p;
p=20;
so when you print the value of p definitely you will get the output as 20 because the value of p is 20
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What does stand for?
What is the difference between union and structure in c?
What is optimization in c?
What is %d called in c?
What does & mean in scanf?
What is return in c programming?
In C programming, how do you insert quote characters (‘ and “) into the output screen?
Explain what does it mean when a pointer is used in an if statement?
Whats s or c mean?
Is javascript based on c?
Once I have used freopen, how can I get the original stdout (or stdin) back?
What is typedef example?
Explain how do you list a file’s date and time?
write a C program:There is a mobile keypad with numbers 0-9 and alphabets on it. Take input 0f 7 keys and then form a word from the alphabets present on the keys.
Why is sizeof () an operator and not a function?