User profile: HatchetMan302

User info
User name:HatchetMan302
History
Joined:
Number of posts:24
Latest posts:

How to Copy Ascii Art without Distortion
I was wondering if there is a way to successfully copy ascii art without out the spaces being distor...

How to initialize pointer char array?
On lines 7 and 8 you are not allocating memory correctly. You cannot say [code]quiz = new q[]; assig...

Problem with execiuting "getline" in "for loop"
An easier way to flush the input buffer is to use the function cin.sync(); It does the same thing b...

read from file into 2d array
In your if statement [code]if(!input)[/code] it should look something like this [code]if(!input.is_o...

Replacing four-letter words with "love"
I think you should start with checking if the word you enter is a four letter word, and if it is, th...