Connecting Tech Pros Worldwide Forums | Help | Site Map

pls help guide me to write this program

Newbie
 
Join Date: Oct 2006
Posts: 3
#1: Oct 21 '06
i need to write a C interactive program that will encode a word or sentence entered
by a user.
For any word or sentence(blank spaces,special characters are ignored here, i.e.
they are not changed) are entered,each character is encrypted by changing it to the next adjacent
letter of the alphabet.
arne's Avatar
Expert
 
Join Date: Oct 2006
Posts: 306
#2: Oct 21 '06

re: pls help guide me to write this program


Quote:

Originally Posted by yajna

i need to write a C interactive program that will encode a word or sentence entered
by a user.
For any word or sentence(blank spaces,special characters are ignored here, i.e.
they are not changed) are entered,each character is encrypted by changing it to the next adjacent
letter of the alphabet.

You may have a look at function
fgets() to read the sentence from stdin;
strlen() to determine the sentence's length, and
isalpha() to check if a character is of interest to you.

Give it a try ;-)
Newbie
 
Join Date: Oct 2006
Posts: 3
#3: Oct 21 '06

re: pls help guide me to write this program


thks!ill try it...
arne's Avatar
Expert
 
Join Date: Oct 2006
Posts: 306
#4: Oct 21 '06

re: pls help guide me to write this program


Quote:

Originally Posted by yajna

thks!ill try it...

If you encounter any problems, just post again :-)
Reply