by heston987
Hi! I am a newbie at C++ and would love to have some help in solving this problem.
|
|
[7 replies] Last: Hi guys, update! I fixed it! With all your help, though it is a simpl... (by heston987)
|
struct dirent *entity difference |
|
[13 replies] Last: p is set to nullptr (by seeplus)
|
by Daniel Steel
Console freezes when complied.
|
|
[6 replies] Last: See also: http://www.cplusplus.com/reference/fstream/ofstream/open/ (by againtry)
|
Hello, I'd appreaciate a code review! |
|
[7 replies] Last: I think the single most important thing you can do is comment your co... (by deleted account xyzzy)
|
recursive_directory_iterator filesystem |
|
[9 replies] Last: seeplus, I suspect the OP has moved on to another topic, this time muc... (by deleted account xyzzy)
|
by Ch1156
SFML Help - Displaying text in a vertical order with a vector
|
|
[6 replies] Last: Apparently sf::Text already has multiline support built in. sf::Text... (by Peter87)
|
CodeLite C++, can not open .exe file of the project when using iostream library |
|
[8 replies] Last: There is an alternate download site for the current Code::Blocks versi... (by deleted account xyzzy)
|
by plastic
for loops, is using i-- bad practice?
|
|
[6 replies] Last: There are 3 ways to iterate through a regular array: #include <iostre... (by deleted account xyzzy)
|
Reading data from text file, with commas, into a dynamic array of structs |
|
[10 replies] Last: #include<fstream> #include<iostream> #include<string> using namespac... (by againtry)
|
by Pen72
Maze (1,2)
|
|
[20 replies] Last: heres my take on it. Even though I just finished messing with it toni... (by markyrocks)
|
by Ynotnow
Has anyone seen this before?
|
|
[11 replies] Last: I tend to avoid youtube since it is a classroom experience with someon... (by deleted account xyzzy)
|
error: cannot convert 'LPCWSTR' {aka 'const wchar_t*'} to 'LPCSTR' {aka 'const char*'} |
|
[11 replies] Last: @seeplus, I tried using "Unicode" (the default) and "Multi--byte" enco... (by deleted account xyzzy)
|
by ElusiveTau
STL stack: Does calling stack.pop() invalidate stack.top() object?
|
|
[6 replies] Last: Had to check for myself Awesome! You figured out a way to test a cla... (by keskiverto)
|
by ElusiveTau
Why isn't TreeNode destructor called?
|
|
[3 replies] Last: and delete isnt really a function. its delete x; or if its a block ... (by jonnin)
|
by bydrachen
Pushing Back Class Objects to a Vector
|
|
[11 replies] Last: You normally don't pass a std::unique_ptr to a function unless it dea... (by deleted account xyzzy)
|
by agirideep
Call to Overloaded Function is Ambiguous?
|
|
[2 replies] Last: The code you posted seems to give: In function 'int main()': 132:27:... (by keskiverto)
|
by Knockadoon
How to select number format when writing to file
|
|
[8 replies] Last: I can print it to the terminal screen this way: printf("UO_Slope %e\... (by thmm)
|
what does this small line of code mean? |
|
[2 replies] Last: The "long" from of the very same code would be: std::stringstream tem... (by JLBorges)
|
by LeoManechest
Coin Flip Script
|
|
[14 replies] Last: If you throw a coin 10 million times the probability of getting exact... (by lastchance)
|
by jNc
get columns quantity for each row of array
|
|
[16 replies] Last: You could just have a regular 2D array with a maximal number of availa... (by Duthomhas)
|