Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.
Favorite Forums
Favorite Tags

5 Posted Topics

Member Avatar for ganmo

What is the error you get? A common problem with linked lists is not setting the next node to the desired value, such as 0 in your example.

Member Avatar for Lerner
0
147
Member Avatar for computercobra

I am trying to make a simulation of the enigma machine and was wondering if this is the right way to start the problem? Here's the main.cpp file: [CODE] #include <iostream> #include <ctime> #include <cmath> #include "enigma.h" using namespace std; int main () { enigma machine_1; return 0; } [/CODE] …

Member Avatar for computercobra
0
2K
Member Avatar for cruisx

Having your program being able to read and write from a file makes it more powerful in my opinion. If your ATM program could read from files then you could have multiple accounts and not just one predefined account, then it would be very versitile and work more like a …

Member Avatar for computercobra
0
849
Member Avatar for shahab.burki
Member Avatar for computercobra

Heres my problem. I can add a node to my linked list in the front and middle, and at the end. But if I add a node to the end of the list and try to print it out, the program crashes. I studied the code and didn't find any …

Member Avatar for computercobra
0
131

The End.