- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
4 Posted Topics
Summers9, I am aware that you mentioned you are a student, perhaps you should consider speaking with your Professor(s)/ Lecturer(s) to get involved in projects. This should assist in clarifying if you are more interested in hardware or software. Also, there is always alot to learn but focus on a …
Hi Brandon 7, I am always of the belief that all programmers should be in the habit of testing situation to learn different techniques or solution in programming. My initial suggest would be that you try to actual create the class "Person" in an IDE (Eclipse, IntelliJ IDEA or any …
Nuruhee, Can you be clearer as to your objective and what you need the code to do.
Hi Learner010 Nice tutorial! Great to see your enthusiasm for programming in C++. A few points: In your first example: int a=1; while(a<=10) { cout<<a++; cout<<endl } The program wouldn't compile due to an error... cout<<endl; --- semi-colon left off. This error is repeated in your Nested Loop example. Finally, …
The End.
Markland