by sighter
my program, new to C++, give me ur thoughts please :)
|
|
[2 replies] Last: I thought i should have done that, but wasnt too sure. Thanks :) (by sighter)
|
by mrman24
Operator Overloading Failure
|
|
[3 replies] Last: Well the whole point is that you define what the operator does. The g... (by Disch)
|
Getting text from a texbox |
|
[2 replies] Last: I'm not trying toi alter anything..I just want when I click the button... (by C to the UNIT)
|
by tfcoder
Initializing a multidimensional array
|
|
[3 replies] Last: They are equivalent regardless of size, as long as the 2d array is not... (by jsmith)
|
by Soaps
Using an iterator in a for loop
|
|
[7 replies] Last: Alright Galik, that all makes sense. I did know the reference to vecto... (by Soaps)
|
pointer problems... |
|
[2 replies] Last: What good would returning an integer index do, anyway. Wouldn't it ma... (by Disch)
|
by ishu161
DEV C++ giving warning
|
|
[2 replies] Last: Make exists for Windows too (MinGW = Minimalist GNU for Windows). Jus... (by Athar)
|
by CPPNewbie
Size / Length of primary array
|
|
[7 replies] Last: [quote=CPPNewbie]I was missing the fact that Galik's code isn't actual... (by Galik)
|
Libraries |
|
[8 replies] Last: Oh ok then now I understand (by C to the UNIT)
|
by vkaul1
cannot deduce template arguments
|
|
[7 replies] Last: So typedef std::map<int,int>::iterator Iter; for( Iter outer ... (by jsmith)
|
by Aeon221
Questions about my Bracketing Search Solution
|
|
[3 replies] Last: Sort of. Read my reply again. It implies that you need to keep track... (by jsmith)
|
by yasaminkh
Search in a File
|
|
[2 replies] Last: [quote=kempofighter]Please post the contents of the file. (by moorecm)
|
by Asakura
Dev c++ error
|
|
[3 replies] Last: it isnt the code coz every single program i make dosnt work ang gives ... (by Asakura)
|
by jbourne
gcc/g++ is not type casting in if()- Problem
|
|
[1 reply] : http://www.parashift.com/c++-faq-lite/newbie.html#faq-29.17 (by R0mai)
|
About message passing |
|
[1 reply] : Objects can contain sub-objects. So the object's methods (member funct... (by Galik)
|
by kalp1200
How to check for prime number
|
|
[1 reply] : your problem is the while loop. while(positive_integer_new%number!=0)... (by hamsterman)
|
by jclawson709
getting a program to accept input whether or not text is typed directly in cmd
|
|
[no replies]
|
by samb96
why won't this assign a string to ch?
|
|
[3 replies] Last: Try this instead. if(i == strlen(ch) - 1) cout << "the new letters ar... (by spaggy)
|
by kalp1200
separating individual digits from an integer
|
|
[10 replies] Last: This one is smaller... int main() { int enter_num, temp_num,... (by mgupta)
|
by materithe
Read byte from JPEG file??
|
|
[5 replies] Last: This should work: std::ifstream ifs("butterfly.jpeg", std::ios::in |... (by Galik)
|