by dnulho
std::sort (iterator, iterator, custom) will not compile
|
|
[6 replies] Last: Thank you, fixed. (by dnulho)
|
by chohmann
Multi-threading
|
|
[1 reply] : m_threadSendData.interrupt(); // interrupt the thread Threads genera... (by Cubbi)
|
by samprat
to compare data_members of a objects store in std::vector
|
|
[1 reply] : #include <iostream> #include <string> #include <vector> #include <alg... (by JLBorges)
|
by yugank
Using a delay function
|
|
[1 reply] : http://en.cppreference.com/w/cpp/thread/sleep_for (by MiiNiPaa)
|
by mjlohr
Problem
|
|
[3 replies] Last: #include <iostream> #include <iomanip> using namespace std; int mai... (by kbw)
|
by quayda
String with Vowel Removal
|
|
[3 replies] Last: What is s? Where did you tell compiler anything about it type, size, c... (by MiiNiPaa)
|
C++ operand programming homework |
|
[15 replies] Last: Bonus (without ifs or switch): #include <functional> #include <iostrea... (by MiiNiPaa)
|
by coddilc
Boost serialization archive versions
|
|
[no replies]
|
by WiddleSticks
error LNK2019: unresolved external symbol
|
|
[no replies]
|
by northfly
Why assign out-of-range value to signed integral type will generate machine depedent results?
|
|
[2 replies] Last: #include <iostream> #include <limits> int main() { long long v ... (by JLBorges)
|
by mjlohr
bubble sort
|
|
[1 reply] : Bubble sort is explained here. https://en.wikipedia.org/wiki/Bubble_so... (by kbw)
|
by praneshiitm
i/o functions and operations
|
|
[no replies]
|
by Gyiove
Run both in cpu and graphics card.
|
|
[no replies]
|
by larjy
Code doesn't do calculation
|
|
[6 replies] Last: I can't thank you enough! That's fixed it. Brilliant, I really apprec... (by larjy)
|
by Gyiove
weird double values on cout
|
|
[5 replies] Last: Problem solved i think. // I calculate fps outside here if( xx5 < ... (by Gyiove)
|
expression must have a pointer-to-member type |
|
[4 replies] Last: The first line of code that he posted does that? So does the second... (by cire)
|
by Ben David
How to stop console from pausing?
|
|
[1 reply] : Do not use system(), obviosly. Use WinAPI: http://msdn.microsoft.com/... (by MiiNiPaa)
|
by Chubby
why doesnt display?
|
|
[10 replies] Last: I see it because r is one who have value from user and xny come from n... (by Chubby)
|
by kimi86
Assignment operator for a class with reference
|
|
[3 replies] Last: To quote the C++ FAQ, C++ gives you the choice: use the assignment op... (by Cubbi)
|
by BRod423
Creating string representation of unsigned char bits
|
|
[4 replies] Last: #include <string> #include <limits> std::string bin2string( unsigned... (by JLBorges)
|