
- Forum
- Programming Talk
- C and C++
- what are pointers
what are pointers
This is a discussion on what are pointers within the C and C++ forums, part of the Programming Talk category; what is a pointer in C? how to use pointers ? where pointers are used? how to use pointers with ...
-
09-26-2007, 07:16 PM #1
- Join Date
- Sep 2007
- Answers
- 1
what are pointers
what is a pointer in C?
how to use pointers ?
where pointers are used?
how to use pointers with array,linked list,stack and structures?
-
10-25-2007, 05:58 PM #2
- Join Date
- Oct 2007
- Answers
- 5
pointers are the technique to directly access and manipulate the data storage area. pointers can be used to create dynamic arrays which can store the data without any bounds or limit of the space requried without wasting the memory by predefining the memory size as in arrays.
pointers can be used for creating stacks, linkedlist, dynamic arrays, structures, trees, b-tree, etc.

Reply With Quote





