Encrypt and Decrypt, Arrays/Pointers

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Dandirom
    New Member
    • Oct 2008
    • 2

    Encrypt and Decrypt, Arrays/Pointers

    Hi guys, I need help. I'd appreciate any pointers on how to go about with this problem. Thanks a lot.


    Using arrays and/or pointers, make a prog that will ask for a string. 2 user-defined functions (encrypt() and decrypt()). encrypt the inputted string and display. e.g. HELLO->KHOOR......... ....orig: a-z,,,,code: d-z,a-c
  • oler1s
    Recognized Expert Contributor
    • Aug 2007
    • 671

    #2
    Some tips:

    - You may find the information at http://c-faq.com/ useful. Arrays and pointers are a confusing topic, so make sure you understand the difference between the two.
    - If you can't figure out an algorithm in plain english, don't bother making it work in code. It needs to make sense in English first.
    - Work piecemeal by piecemeal.

    Comment

    • Dandirom
      New Member
      • Oct 2008
      • 2

      #3
      Thanks a lot. I appreciate the help.

      Comment

      Working...