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 / vignesh1988i
this will result in error.... pointer itself cant point to
any value... we, the users must make an explict assignment
for the pointer to point to an value .....
| Is This Answer Correct ? | 4 Yes | 7 No |
Post New Answer View All Answers
How can I make sure that my program is the only one accessing a file?
Explain the ternary tree?
What does the error message "DGROUP exceeds 64K" mean?
What is c language used for?
When can you use a pointer with a function?
Is sizeof a keyword in c?
What is the 'named constructor idiom'?
Write a simple code fragment that will check if a number is positive or negative.
What is the meaning of ?
What is pass by reference in functions?
How can I convert a number to a string?
What are the basic data types associated with c?
What are void pointers in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above
What are actual arguments?