No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
5 Posted Topics
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.
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] …
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 …
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 …
The End.
computercobra