by obai
Runtime error R6025
|
|
[3 replies] Last: http://support.microsoft.com/kb/125749 (by kbw)
|
by dkaip
another copy problem ...
|
|
[3 replies] Last: wchar_t is a wide char, a permamently wide char, i.e. Unicode. You ar... (by kbw)
|
by err0r1212
(SOLVED) "Ignore this" code ~ General Question
|
|
[5 replies] Last: An */ ending comment block operator doesn't act like a brace. One will... (by eker676)
|
by jzackt
names will not switch using bubble sort
|
|
[2 replies] Last: names_array is a char array. Thanks i will try strcpy (by jzackt)
|
getline (1,2) |
|
[26 replies] Last: You don't have to press enter twice, the second time you pressed it wa... (by Bazzy)
|
by comput14
to count the number of spaces vowels consonants and digits in a line
|
|
[2 replies] Last: If you ever want to check multiple inequalities, you need to use a log... (by jdd)
|
by comput14
how to count spaces in a line
|
|
[2 replies] Last: That program is counting the number characters in the string. If you w... (by Bazzy)
|
by Tristanm
Grab unknown number of integers out of a C++ string
|
|
[1 reply] : You can use stringstreams to get numbers from a string and a vector to... (by Bazzy)
|
Creating a two dimentional array. |
|
[9 replies] Last: In C++, you can always do something like this: //Create your po... (by Tristanm)
|
by ilyes
destruct a set of classes
|
|
[2 replies] Last: I don't think it's needed. Say for instance: // ifndef BOB_H //... (by closed account S6k9GNh0)
|
by n4nature
abstract class
|
|
[5 replies] Last: Thanks! (by n4nature)
|
by ilyes
set of class
|
|
[4 replies] Last: that is a good RQ ! my pb is resolved!!! (by ilyes)
|
by Disch
Derived function chainging problem
|
|
[2 replies] Last: template< typename Derived > class A { Derived& a() { return ... (by jsmith)
|
by ilyes
a problem with the operator < in a set of class
|
|
[2 replies] Last: Also assuming you ever write the destructor to free the memory allocat... (by jsmith)
|
by Garandy
Chess board program.
|
|
[8 replies] Last: actually your design will not be able to solve the problem which are d... (by writetonsharma)
|
by comput14
programe to perform Matrix Multiplication for 3x5 and 5x3 matrix.
|
|
[8 replies] Last: Look at two for loops for(int i=0;i<5;i++) ( for(int j=0;j<5;j++)... (by buffbill)
|
by ltrane2003
Merge Sort
|
|
[9 replies] Last: You can do this using two boolean functions more () and copy() providi... (by buffbill)
|
by chaseshaw275
Insertion into Linked Lists
|
|
[3 replies] Last: notice that while (nodePtr != NULL && nodePtr -> value < value) is... (by Gumbercules)
|
by ehullz
Maximum Velocity Problem
|
|
[11 replies] Last: Well you could do something like: while(r>max_r) {//calculate r ... (by buffbill)
|
by firedraco
Overloading opreators error
|
|
[4 replies] Last: Ok, I found the error. There was another function I was calling insid... (by firedraco)
|