by kitfox
How to use smart pointers to expose internal parts of a class?
|
|
[3 replies] Last: Smart pointers do not replace plain pointers -- that's a common misc... (by mbozzi)
|
by kitfox
Best way to allocate a block of memory?
|
|
[4 replies] Last: If you want to dynamically manage memory and don't want to use std::v... (by deleted account xyzzy)
|
by SirEnder125
Is Java easy to learn after C++?
|
|
[9 replies] Last: the biggest problem I have with java after c++ is that there are a doz... (by jonnin)
|
by SirEnder125
Reading hex offsets/data from ifstream file?
|
|
[3 replies] Last: int offset; mystream.read((char*)&offset, sizeof(offset)); // if th... (by dhayden)
|
by Borneq
Odd template
|
|
[2 replies] Last: To explicitly answer each of these: std::declval is a function, so th... (by MikeyBoy)
|
by SirEnder125
#ifndef include guard help!
|
|
[13 replies] Last: Problem solved. Thank you all for helping!! (by SirEnder125)
|
by its007
Filling 3-d array with random number with conditions
|
|
[5 replies] Last: Thank you jonnin and coder777! I appreciate the help much very much. ... (by its007)
|
Manipulating an array (creating destructor, shifting elements forward/back and printing the array) |
|
[1 reply] : moveTowardEnd( index ) { /* s = size WHILE s > index : ... (by nuderobmonkey)
|
by SirEnder125
User input after *argv[] input
|
|
[8 replies] Last: Thank you. I'll try to remember all this stuff... I should have learn... (by SirEnder125)
|
by Flashbond
Certain input value causing crash
|
|
[5 replies] Last: Change to int* p = new int ; p = 2, p = m; works ok on my win... (by seeplus)
|
by SirEnder125
C++ code for reading text from file? (help)
|
|
[4 replies] Last: just do getlines and discard the ones you do not want to skip a line o... (by jonnin)
|
by JUANDENT
Does destructor of a polymorphic base class that is protected need to be virtual?
|
|
[3 replies] Last: thanks!! (by JUANDENT)
|
by souleaterdm1
How do I use a boolean vector with if-else?
|
|
[1 reply] : .at is notably slower than notation because it checks i to be valid.... (by jonnin)
|
by jerryd
wofstream problem
|
|
[7 replies] Last: cplusplus forum, I was able to find a way to create a windows file na... (by jerryd)
|
by SirEnder125
What does ^= mean and how do I use it?
|
|
[4 replies] Last: Ah, thanks for explaining this. I'll try using this in my code. (by SirEnder125)
|
by SirEnder125
Encryption code not working
|
|
[2 replies] Last: I figured out what was wrong, I should have done: data = encrypt(dat... (by SirEnder125)
|
by JUANDENT
How to combine hash values using std::hash
|
|
[12 replies] Last: perfect hashing is usually reserved for a static set of known data suc... (by jonnin)
|
by kingjulian
my compiler says expected primary expression before '<<'
|
|
[2 replies] Last: You're also attempting to use the name of a class as if it were an obj... (by Ganado)
|
by AmirRN
Why const reference string
|
|
[1 reply] : is not why you need a const reference, but why do you need a non-const... (by ne555)
|
by Depressed
Eight Queens Problem 2-D Array Help
|
|
[1 reply] : TBH, the whole idea of storing the row in a 'Queen' object, and the co... (by salem c)
|