Forum: C Jan 30th, 2005 |
| Replies: 25 Views: 32,636 i changed the code of that section.
while (passkey[x] != '\0') // While the string isn't at the end...
{
passkey[x] = (int)passkey[x]; // Transform the char to int
... |
Forum: C++ Jan 30th, 2005 |
| Replies: 4 Views: 5,880 Dave,
Thankyou for replying, as i stated i am new to this, and am not really sure of what i am doing.
I dont understand the first question you asked. Im confused, can you explain, and i might... |
Forum: C Jan 30th, 2005 |
| Replies: 25 Views: 32,636 i tried the method above, but the segmentation fault error kept appearing. |
Forum: C++ Jan 30th, 2005 |
| Replies: 4 Views: 5,880 Hello all,
i am new to C++ and im writing a little encryption program for fun. It requires the user to enter a 'passkey', which is a string (numbers, and letters). Then the program defines the... |