by JLBorges
Unit testing in C++ ?
|
|
[7 replies] Last: Gotcha. Still, it spawned a thread which actually has some useful con... (by MikeyBoy)
|
Compiler error: Expected primary expression before... |
|
[2 replies] Last: Also, some of your statements are missing semicolons at the end. (by MikeyBoy)
|
by julie2019
Difficult Bugs
|
|
[no replies]
|
LINKED LIST FUNCTIONS IN HEADER |
|
[18 replies] Last: If you see the time. I edited it at 8:13 and your response came at 8:... (by doug4)
|
by woohyeon
I wonder if I just use like this about template
|
|
[8 replies] Last: maybe I should study English.. Don't worry about it. I don't alwa... (by doug4)
|
by volang
Concat strings, assign to char pointer (1,2)
|
|
[20 replies] Last: strcpy(a, &str1 ); this is not safe. c++ strings are NOT zero termin... (by jonnin)
|
by volang
Allocate memory then point it to another block
|
|
[9 replies] Last: A beginner who wants to mix C with C++ before they have a solid under... (by deleted account xyzzy)
|
by volang
Open files without binary set
|
|
[11 replies] Last: This is good. Nice explaining, i get it now. I should use gcount inst... (by volang)
|
Adding function to header for link list |
|
[4 replies] Last: I see three major mistakes. (1) When you traverse the list you MUST g... (by lastchance)
|
by marhuum
function, its argument can accept a string variable with and/or without const
|
|
[1 reply] : Huh? #include <iostream> using namespace std; void foo ( const int ... (by salem c)
|
by woohyeon
Can I override assert macro? (1,2)
|
|
[26 replies] Last: The comma is an operator if and only if it is part of an expression ;... (by JLBorges)
|
by Mitsuru
a function returning Eigen::VectorXd failed type inference
|
|
[2 replies] Last: Dear kbw Thank you for your kind reply. I understand type deduction ... (by Mitsuru)
|
by arr
dp with bitsets
|
|
[1 reply] : You need to define operator< to compare the map elements. It's unlike... (by dutch)
|
by woohyeon
operator overloading? or overriding? What is the right?
|
|
[2 replies] Last: Thanks for your answer! (by woohyeon)
|
by fog22
What does this error code mean? exit code -1073741819 (0xC0000005)
|
|
[3 replies] Last: Check for null before using a pointer. Top is null in this case.... (by kbw)
|
by codeG15
can you help me for Data Structures
|
|
[1 reply] : If you google "infix to prefix" you'll find some solutions. (by dhayden)
|
Can you check me if this is valid program ? because i dont find an output screen |
|
[1 reply] : add a cin statement the end of it, see if that helps. if so, you are ... (by jonnin)
|
by b p t
Open mailbox
|
|
[2 replies] Last: It worked. Thank you (by b p t)
|
by marhuum
Allocate a length of new C++ string dynamically
|
|
[6 replies] Last: you can also just take &var If you need a non-const char* you can j... (by Peter87)
|
by volang
Read in more than memory allocated
|
|
[10 replies] Last: Great! Thanks alot, it's appreciated (by volang)
|