Forum: C++ Jun 6th, 2007 |
| Replies: 6 Views: 980 This is the code i have so far, which only displays "file.txt" and displays it.
#include<iostream>
#include<fstream>
using namespace std;
const int SIZEMAX = 81; |
Forum: C++ Jun 6th, 2007 |
| Replies: 6 Views: 980 Thanx, hmm but i still have one problem...
I need to read the text from a file.
So is there a way to read from the file and
then put that data into an array? |
Forum: C++ Jun 6th, 2007 |
| Replies: 6 Views: 980 i am trying to write a program that takes information from a file and reads it and then does some kind of encryption, simple as adding one to it
I have it reading the file,
but how would i go... |
Forum: C++ Jun 4th, 2007 |
| Replies: 5 Views: 5,648 Sweet!
I'll definitly give those a try .
Thanx. |
Forum: C++ Jun 4th, 2007 |
| Replies: 5 Views: 5,648 Hi all,
I have a QUESTION regarding data validation
I'm writing a program, where i want the input to be only integers.
so if they enter things such as letters or symbols it won't crash my... |