Structured Data with PointersThanks guys! I got it working, I appreciate the help. Here is my output: [code] 1. Name: Amy Adams...
Structured Data with PointersHello all, I have a question with my Program. I have defined a structure for Student Grade Records, ...
Displaying in rows and columsYou should just be able to eliminate the two dimensional array you created using nested for loops an...
Displaying in rows and columsTry this: [code] for (int i = 0; i < 50; i++) { cout << num[i] << " "; if ((i + 1) % 10 == 0)...
Help with a C++ Homework ProblemAh okay , Thank you 'Mats' - did everything else in the while loop look correct? It built - but wh...