CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 11 of 11

Thread: Caesar cipher

Threaded View

  1. #6
    Join Date
    Oct 2008
    Posts
    4

    Re: Caesar cipher

    I'm not sure where or how to use the infile. It is meant to open the file with outfile read it to the Plaintext buffer then it goes through the encryption/decryption changing to CipherText then write to the file.

    I tried
    Code:
    outFile >> PlainText;
    But it gives me an error
    expected '(' before "outfile"
    am I suppose to use this instead of
    Code:
    (!outFile.eof() << PlainText[100]);
    Last edited by hitman_38; October 29th, 2008 at 10:42 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured