what is pointer?
Answers were Sorted based on User's Feedback
Answer / guest
a pointer is a a variable that contains the address of an
another variable
| Is This Answer Correct ? | 1 Yes | 1 No |
Answer / gyanendra
Pointer is used to store address of any variable.
int a,*p;
p=&a//p store address of a
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / j naveen reddy
Pointer is a reference variable, as it refers the address of the other variable
| Is This Answer Correct ? | 0 Yes | 0 No |
Explain do array subscripts always start with zero?
What is function prototype in c language?
What is the stack in c?
I need previous papers of CSC.......plz help out by posting them.......
Explain enumerated types in c language?
How can I split up a string into whitespace-separated fields?
why we are using semicolon at the end of printh statment
Why flag is used in c?
How would you print out the data in a binary tree, level by level, starting at the top?
What is typedef?
What is a loop?
write a programme that inputs a number by user and gives its multiplication table.