Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~890 People Reached
Favorite Forums
Favorite Tags
c++ x 7

5 Posted Topics

Member Avatar for Spiffy P Mcgee

The exercise tells me to find the error in this code [CODE] int g() { cout << "Inside function g" << endl; int h() { cout << "Inside function h" << endl; } } [/CODE] The listed error is that function h should not be defined inside of function g. …

Member Avatar for Ancient Dragon
0
128
Member Avatar for ProgrammerAl
Member Avatar for mushget
0
228
Member Avatar for Spiffy P Mcgee
Member Avatar for Spiffy P Mcgee

What I have to do: I have to read numbers from a file input from the keyboard into an array, sort the numbers, and write the sorted numbers to a file. My problems are twofold: First, I don't know how big to make the array. When I try to write …

Member Avatar for Clinton Portis
0
276
Member Avatar for Spiffy P Mcgee

I've gotten stuck on my assignment. The compiler says that the code is fine, but the program doesn't work properly. [CODE]#include <iostream> #include <iomanip> #include <fstream> using namespace std; void display_days (int []); void total_days (int []); void average_days (int []); void maximum_days (int []); void minimum_days (int []); int …

Member Avatar for jonsca
0
143

The End.