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 are the 4 types of unions?
How to Throw some light on the splay trees?
What is p in text message?
What is context in c?
Do character constants represent numerical values?
What does the function toupper() do?
What is the difference between c &c++?
Where register variables are stored in c?
What is the use of #include in c?
write a program that reads lines(using getline), converts each line to an integer using atoi, and computes the average of all the numbers read. also compute the standard deviation.
What are structure types in C?
What is volatile variable in c?
What is the general form of function in c?
Can i use “int” data type to store the value 32768? Why?
What is an lvalue in c?