User profile: cooper90

User info
User name:cooper90
Old user name:ericcooper
Name:Eric Cooper
Location:Dallas, TX
History
Joined:
Number of posts:6
Latest posts:

Structured Data with Pointers
Thanks guys! I got it working, I appreciate the help. Here is my output: [code] 1. Name: Amy Adams...

Structured Data with Pointers
Hello all, I have a question with my Program. I have defined a structure for Student Grade Records, ...

Displaying in rows and colums
You should just be able to eliminate the two dimensional array you created using nested for loops an...

Displaying in rows and colums
Try this: [code] for (int i = 0; i < 50; i++) { cout << num[i] << " "; if ((i + 1) % 10 == 0)...

Help with a C++ Homework Problem
Ah okay , Thank you 'Mats' - did everything else in the while loop look correct? It built - but wh...