Answer Posted / vijay r15
pointer denotes the address of a variable
*denotes its a ptr var
Ex
Int a; //ordin var
Int *p; //ptr var going to hold sum address
P=&a; //p holds the address of a
With thanks and regards,
Vijay r15
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Is return a keyword in c?
Which is best linux os?
What is volatile variable how do you declare it?
What are the 4 data types?
Explain the difference between structs and unions in c?
Why we write conio h in c?
Should I learn data structures in c or python?
What is pivot in c?
This is a variation of the call_me function in the previous question:call_me (myvar)int *myvar;{ *myvar += 5; }The correct way to call this function from main() will be a) call_me(myvar) b) call_me(*myvar) c) call_me(&myvar) d) expanded memory
What is hash table in c?
What is the use of static variable in c?
What is static volatile in c?
Is it fine to write void main () or main () in c?
What is the process of writing the null pointer?
What is static and volatile in c?