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
~143 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for ochambo

Hi, I'm new to this programming stuff and I'm going through Beginner's Guide by Herbert Schildt. In Module 4 Critical Skill 4.1 Use one-dimensional array. #include<iostream> using namespace std; int main() { int sample[10];// this reserves 10 integer elements int t; // load the array for(t=0; t<10; ++t) sample[t] = …

Member Avatar for Dave Sinkula
0
143