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
What is the difference between functions getch() and getche()?
How can I read/write structures from/to data files?
What are the two types of structure?
Describe dynamic data structure in c programming language?
How can I check whether a file exists? I want to warn the user if a requested input file is missing.
What is mean by data types in c?
please send me the code for multiplying sparse matrix using c
What does main () mean in c?
Why is c called c?
What is variable declaration and definition in c?
int main() { Int n=20,i; For(i=0;i<=n;i--) { Printf(“-“); Return 0;
What is an lvalue in c?
What does s c mean in text?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?
Write a program to print numbers from 1 to 100 without using loop in c?