by killer024
In trainer Working...
|
|
[no replies]
|
by Harlequin
a doubt in functions
|
|
[3 replies] Last: Thank you Bazzy..... (by Harlequin)
|
by Harlequin
learning windows programming...
|
|
[2 replies] Last: can u tell what all i need to know.......tell me a good site where i... (by Harlequin)
|
adding string in a string.... |
|
[1 reply] : If you are trying to change eg. "happy" to "happiest" try to see if... (by Bazzy)
|
by psc165
Using loops
|
|
[1 reply] : for (int i = 1;i < 5;++i) { for(int j = 1; j < i; ++j) { ... (by onur)
|
Sudoku problem |
|
[1 reply] : A real sodoku-generator will get a little more complex... I would u... (by Scipio)
|
by layla
reading a file in reverse order
|
|
[2 replies] Last: If you can use C++, it has the seekg ifstream member function (by Bazzy)
|
by Enserric
Infinite loop
|
|
[2 replies] Last: Thank you (by Enserric)
|
by chungolongo
Swapping the contents of a vector
|
|
[5 replies] Last: Thanks for your replies. jsmith: Thank you very much for pointi... (by chungolongo)
|
'std' : illegal use of namespace identifier |
|
[1 reply] : std::cout << "Your favorite number is" << iNumber << std:endl; Yo... (by Return 0)
|
by satchmo05
Retrieving data from a file (.dat)
|
|
[1 reply] : Load the entire file into an array or vector and then use the find() a... (by eker676)
|
by Cpluswhat
Greatest common divisor error
|
|
[3 replies] Last: hehe your gcd function is much better than mine! gonna use yours :) (w... (by tition)
|
by belkdaddy
Breaking up a string
|
|
[1 reply] : Given string foo = "Hello World" or char foo = "Hello World"... (by jsmith)
|
by Treseler
main() use in other functions that main() uses.
|
|
[2 replies] Last: ahh, thank you! What a simple answer. Haha (by Treseler)
|
by masiht
void to pointers
|
|
[5 replies] Last: Thank you bazzy .this example is easier. (by masiht)
|
by pamcor
how will i break this C++program?
|
|
[1 reply] : You should use && instead of || : if ( speed<=74 && speed >55 ) You... (by Bazzy)
|
by audrei
how to program...?
|
|
[4 replies] Last: Multiple posts, same topic: http://www.cplusplus.com/forum/general/832... (by jdd)
|
by eker676
Iterator doesn't work properly
|
|
[11 replies] Last: So it would be something like myList.erase( std::remove_if( myLi... (by jsmith)
|
by satchmo05
How do I make a program read the data?
|
|
[1 reply] : The way you are getting input from the file is overwriting the user in... (by Bazzy)
|
by vir
Problem with looping
|
|
[4 replies] Last: thx, my problem solve.. (by vir)
|