Answer Posted / likhit gatagat
pointers in C are variables storing address of some another
memory variable/location to which they are pointing
e.g: int *p;
int s;
p=&s;
now if s has memory address 101 then p will be storing
this address i.e pointing to variable s
| Is This Answer Correct ? | 17 Yes | 0 No |
Post New Answer View All Answers
How do you redirect a standard stream?
plz let me know how to become a telecom protocol tester. thank you.
Explain what is output redirection?
How do I send escape sequences to control a terminal or other device?
When a c file is executed there are many files that are automatically opened what are they files?
How can I make sure that my program is the only one accessing a file?
Why is event driven programming or procedural programming, better within specific scenario?
What kind of structure is a house?
What is a null pointer in c?
what is the significance of static storage class specifier?
What is an expression?
What are the features of the c language?
How many levels of pointers have?
Differentiate between full, complete & perfect binary trees.
What does void main return?