cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
how do u insert a new node using functio
how do u insert a new node using functions
Feb 14, 2008 at 10:03pm UTC
dhbrown16
(3)
guys im having problem with my C++ assignment. hoping you can help me. how do insert a new node containing a new information using a function, to add into a text file already containing information. thanks.
Feb 17, 2008 at 6:56pm UTC
Duthomhas
(13282)
That's a very general question. Give us more details and show us the code you've written so far...
Feb 18, 2008 at 9:11am UTC
Graham
(15)
Well, be simple here:
Nodes are often used when talking about self referential structures, like
1
2
3
4
struct
Node{
char
data;
struct
Node *next; };
So when you talk about a text file, it seems like "node" wasn't the word you were planning to use.
Perhaps an edit would clear things up.
Topic archived. No new replies allowed.