by Sam786
Need help with C++
|
|
[3 replies] Last: Also, article on how to generate random number: http://www.cplusplus.c... (by naaissus)
|
by Sefik1337
selection sort issue
|
|
[1 reply] : Line 61: overwrites the new array with the old one. The new one is lo... (by kbw)
|
by MikeyMac
Finding Average. Trying to find the average of the numbers in string below. This is what I have so far
|
|
[3 replies] Last: http://www.cplusplus.com/articles/z13hAqkS/ It doesn't look like it c... (by Zhuge)
|
Reverse String |
|
[7 replies] Last: Needs context. It's not possible to say why the result is not as requi... (by Chervil)
|
ASCII TO STRING Conversion |
|
[5 replies] Last: What if its a very long string, like for example 49 20 4c 49 4b 45 20 ... (by BobTheBuildingBuilder)
|
by neutrino
C++ operator ==, is it important to check self equality?
|
|
[4 replies] Last: > for operator= (assignment) it's usually critical. In modern C++, it... (by JLBorges)
|
by JUAN DENT
Numerical or Decimal types in C++?
|
|
[4 replies] Last: You could use a 64 bit integer to represent the number of cents. (by dhayden)
|
by DragonOsman
Passing more than one argument to argv in VS
|
|
[7 replies] Last: Guys, I already did ALL of that stuff. The code itself compiles in VS... (by DragonOsman)
|
by Hibblejaybob
String Find issue.
|
|
[9 replies] Last: Ah, it's alright. I'm sorry too! (by Hibblejaybob)
|
(Insertion Sort) How do I count the number of swaps comparisons and passes? |
|
[1 reply] : Can you define what you mean by "passes", "swaps", and "comparisons"? ... (by Zhuge)
|
by YourBroAlex
Decrypting with arrays?
|
|
[2 replies] Last: You're going to need to explain the algorithm. The screenshot of the w... (by Zhuge)
|
by brownie
Feedback on Text Processing
|
|
[8 replies] Last: > how clean your version looks The code looks cleaner because it uses... (by JLBorges)
|
by nameishi
store just one Row of a vector at a time
|
|
[no replies]
|
by booghimen91
split line and store
|
|
[4 replies] Last: Thanks for the file data example. Here's an outline of reading from t... (by Chervil)
|
by calgai
Question about const string array size
|
|
[2 replies] Last: Here array is pointer! Not array of strings. So size of pointer it is ... (by kulkarnisr)
|
by homing
assembly crash course for C++ Developer
|
|
[3 replies] Last: Do a search on "intel assembly language tutorial" That seemed to hit ... (by kbw)
|
by technologist
incomplete type
|
|
[3 replies] Last: int and Card_Rank are two different types. Simply assigning an in... (by Peter87)
|
by Zyion
How do I count the lines for the method and object. I can't figure it out. (1,2)
|
|
[26 replies] Last: I got it to work kinda... thanks pnoid! it outputs the number of lines... (by Zyion)
|
by DragonOsman
std::string& input function throws bad memory allocation exception
|
|
[16 replies] Last: FWIW, I think it's a bad practice in C#, as well. It's just harder to ... (by helios)
|
by siva143
Huffman compression
|
|
[2 replies] Last: Okay. I did it. Now what? (by Disch)
|