C++: How to find a the Min. & Max. number from a set of numbers |
|
[2 replies] Last: The main loop will look the following way for ( int i = 0; i < Num_I... (by vlad from moscow)
|
What is operator overloading in classes? |
|
[4 replies] Last: Thanks a lot guys, specially vlad! you explained it real nice.. I thin... (by emperorvinayak)
|
by EeAA
reverse linked list function
|
|
[1 reply] : I do not like your variable names. It is difficult to understand what ... (by vlad from moscow)
|
by cocopuff
find the smallest word in the string. revise.
|
|
[11 replies] Last: What is it ? s[*p]; *p is some symbol in your string. You use th... (by vlad from moscow)
|
by Jonn
Issues with Pointers
|
|
[5 replies] Last: You return a copy of DefPly in getPly() when you should be returning... (by Athar)
|
by deeburt
Having trouble with function to write output to file
|
|
[2 replies] Last: The derived classes could be thought of mathStudent, englishStudent...... (by deeburt)
|
by roketteere
[question] Constant
|
|
[2 replies] Last: Yes, that is why it is called a constant . (by LB)
|
C++: When to use For Loop & While Loop? |
|
[2 replies] Last: For example, while loop: size_t strlen( const char *s ) { size_t... (by vlad from moscow)
|
by eyesofhope
errors creating my first class
|
|
[7 replies] Last: You should start with this: #include <iostream> using namespace std... (by Moschops)
|
Soldier C++ Program |
|
[1 reply] : Make an array of size 40. Fill it with ones. Start at the beginning. ... (by Moschops)
|
by drhingle
undefined ifstream ofstream
|
|
[2 replies] Last: #include <cstdlib> #include <iostream> #include <fstream> #include <... (by blackcoder41)
|
by Flyingbob
Give me feedback on my text based rpg. Any improvments I could make?
|
|
[2 replies] Last: Also instead of system("pause") use cin.get(); (by Ch1156)
|
by klae
Storing Fibonacci's sequence in an array?
|
|
[1 reply] : #include "stdafx.h" #include <iostream> using namespace std; int ma... (by vlad from moscow)
|
by roketteere
_getch not defined Code:Blocks
|
|
[4 replies] Last: Oh i didnt know that. I have been using Visual C++ and I always have t... (by roketteere)
|
by newGirl79
Inverted asterik triangle -- for(int digit = 1; digit < num-row + 1; digit++) I know it works, but why?
|
|
[1 reply] : It's just a math issue. say you enter 9 for num. Then it makes row 0, ... (by BHX)
|
by pjwasz
Comparing int arrays
|
|
[6 replies] Last: That makes no sense. In your generation function you generate 10 nu... (by cire)
|
by crobertsbmw
Viewing Variables in Visual Studio
|
|
[2 replies] Last: If you're working with a release build, it's entirely possible those v... (by cire)
|
by Rei
Using arrays calculating mean and median
|
|
[no replies]
|
by zkype
Asking for array class constructor initialization
|
|
[no replies]
|
unexpected results |
|
[1 reply] : In build_Matrx() you stored entered values into local matrx1 , afte... (by tfityo)
|