by hp14
Function
|
|
[5 replies] Last: [quote=hp14]Is somebody able to write a function that changes the info... (by lastchance)
|
How can i use getline function to display pointer to an array. |
|
[2 replies] Last: std::vector<std::string> lines; for (std::string line; std::getline... (by seeplus)
|
by Tanvi2992
want to use vector and hash table vector array
|
|
[2 replies] Last: vector <apartment> apt ; This probably doesn't do what you think ... (by seeplus)
|
by Tanvi2992
help to implement hash table in my project
|
|
[1 reply] : You could use a std::unordered_map to create your hash table: https:... (by deleted account xyzzy)
|
by adam2016
Help in understanding assembly
|
|
[1 reply] : it doesn't show the assembly for the function "function" because we a... (by helios)
|
by dean
Deadlock
|
|
[5 replies] Last: Hi, thanks for the clarification! I now understand the issue. (by dean)
|
by nhungkng
I have to use magic numbers to display values in the correct position in an array. How can I get rid of it?
|
|
[1 reply] : most of the time magic numbers are eliminated simply by giving them a ... (by jonnin)
|
error: default argument given for parameter 2 of .. |
|
[1 reply] : Remove the default argument from the definition. It's enough to have i... (by Peter87)
|
by ahmadalibin
Getting Data: undeclared identifier and 'std::vector': 'Data' is not a valid template type argument for parameter '_Ty'
|
|
[8 replies] Last: @lastchance Thank you so much for all your time. You've been a big hel... (by ahmadalibin)
|
by technologist
vector and mats
|
|
[8 replies] Last: Keskiverto wrote: The cv::Mat seems to have multiplication for Ma... (by technologist)
|
by mnm71
How to use the template class in another class?
|
|
[2 replies] Last: The a default-member-initializer must be a brace-or-equals-initiali... (by JLBorges)
|
by lbrandewie
RegEx problem
|
|
[11 replies] Last: Reported to Microsoft 12/12/2020. (by lbrandewie)
|
by Bob O
Help with selecting a graphics library for Visual Studio C++
|
|
[2 replies] Last: You can use the console for barebones graphics via gdi. Here are my c... (by oggin)
|
by arkkay
Help with downcasting
|
|
[12 replies] Last: The library, still in it's infancy, is here: https://github.com/rkuris... (by arkkay)
|
by WieseF
Selection Sort incorrectly switched last 2 indexes
|
|
[2 replies] Last: Referring to salem c 's code, line 3 appears to be causing you to ind... (by AbstractionAnon)
|
error: no matching function for call to |
|
[2 replies] Last: src/starmaze.cpp:369:49: error: no matching function for call to 'des... (by AbstractionAnon)
|
by ahmadalibin
Defined algorithm for Market exchange bidding
|
|
[1 reply] : I would say that "defined algorithm" is simply one that you write that... (by AbstractionAnon)
|
by ahmadalibin
Prevent overflow in Linear Regression algorithm
|
|
[6 replies] Last: You can compare standard linear regression with your slightly odd vers... (by lastchance)
|
by JosepH2OW
Strange Cout
|
|
[9 replies] Last: Thanks @Ganado you got it! (by JosepH2OW)
|
by jonnin
Need help with a code that solves linear equation using elimination method
|
|
[8 replies] Last: Ha, I assumed you were OP. (by Ganado)
|