
April 27th, 2004, 08:05 PM
|
|
Registered User
|
|
Join Date: Apr 2004
Posts: 1
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
Help with a program
i am trying to understand how to encrypt a string.
i think i could use a for loop like
for(x=0; x < strlen(input); x++)
{
input[x] = (------);
}
where input[] is my string that the user inputs
i dont know what formula to put in (-------).
every formula i try creates a crazy output.
i just want a formula that will output all the letters shifted
two positions or something
any help would be greatly appreciated
|