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 / lylez00
Because you're printing p, not *p. scanf takes addresses of
variables as arguments, but printf does not.
| Is This Answer Correct ? | 7 Yes | 10 No |
Post New Answer View All Answers
What is the ANSI C Standard?
What are the two types of functions in c?
Why is c called c not d or e?
Study the following C program :call_me (myvar)int myvar;{ myvar +- 5; }main(){int myvar;myvar = 3;call_me(myvar);printf("%d ",myvar);What will be printed a) 3 b) 5 c) 8 d) symbol
How can you tell whether a program was compiled using c versus c++?
Is anything faster than c?
Explain the process of converting a Tree into a Binary Tree.
What is c programing language?
Explain how are 16- and 32-bit numbers stored?
What is meant by preprocessor in c?
Differentiate between Macro and ordinary definition.
Can we declare a function inside a function in c?
What does 3 periods mean in texting?
HOW TO SOLVE A NUMERICAL OF LRU IN OS ??????
Multiply an Integer Number by 2 Without Using Multiplication Operator