
please wait
by FlashGumby
"Type is incomplete"
|
Have a problem that's actually convinced me to *learn* C++ rather than just tweaking source I have. The guy that wrote most of the C++ code I maintain at wor... |
Jul 6, 2016 at 5:41am
[1 reply] : What types are cln1__CountryReturnType and CountryReturnType defined a... (by a k n)
|
by Wu zhen hai
a map confuseness
|
#include <map> #include <iostream> #include <algorithm> int main() { std::map<int, int> iim = { {1,2},{1,3},{2,2},{3,2}}; //erase all elements whose ... |
Jul 6, 2016 at 1:59am
[1 reply] : The erase-remove idiom cannot be used for associative containers. htt... (by cire)
|
by CrazyKen
Write in file in file_makeacc() does overwriting to the file even with ios::app
|
#include<iostream> #include<fstream> #include "conio.h" //GCC conio.h #include<iomanip> #include<windows.h> using namespace std; /* *****************... |
Jul 5, 2016 at 8:38pm
[7 replies] Last: You open an fstream with the ios::out flag, meaning it is an output st... (by doug4)
|
by EL1A
Webinar (July 12): How to Improve Testing Coverage with Automated Code Coverage Analysis
|
Join Squish Coco expert, Clemens Anhuth, and learn how to do Unit & Regression testing effectively. More information and registration at https://www.froglogi... |
Jul 5, 2016 at 4:41pm
[no replies]
|
by Murozo
C++ Basic 4 transactions math program
|
https://www.youtube.com/watch?v=aUarRGFl2vg C++ Basic 4 4 transactions math program |
Jul 5, 2016 at 3:21pm
[no replies]
|
by ozae
was not declared in this scope
|
hi i have been working and get stuck with something like this" C:\Users\ThinkPad\Desktop\2D\HEL\main.cpp|225|error: 'set' was not declared in this scope, and n... |
Jul 5, 2016 at 3:11pm
[1 reply] : It means that you are trying to use a function/method that does not ex... (by Duthomhas)
|
by gedamial
Urgent: very strange results with my String class (operator +)
|
Hello. This is hard to explain and to make it easy to understand it came a bit long. Look at this example: GString myObj = "he"; myObj.Append("llo"); cout <... |
Jul 5, 2016 at 2:12pm
[16 replies] Last: No, character is not converted to an int. character is already an ... (by Peter87)
|
by Raizel
Need help im stuck.
|
Hey guys!i just started learning c++ programming and i am stuck on a problem. The problem is I have to implement selection construct and continue the loop and ... |
Jul 5, 2016 at 12:58pm
[7 replies] Last: I learned from that. std::string name; cin >> name; :) (by closed account G2zU5Di1)
|
by Wu zhen hai
g++
|
I want to compile gcc source code on windows. help! |
Jul 5, 2016 at 9:17am
[2 replies] Last: See 'Creating a native Win64 compiler' https://sourceforge.net/p/mingw... (by JLBorges)
|
by primem0ver
Hiding Implementations: A look at performance (PIMPL vs Abstract Interface)
|
Abstract: This is an 'article' proposal that I wish to discuss first (if anyone is interested). I investigated the the performance difference between a Pimpl... |
Jul 5, 2016 at 2:18am
[3 replies] Last: There would be a significant difference in performance (only) if the f... (by JLBorges)
|
by baylie
Dictionary reader
|
So I'm working on this code and I think I've actually almost got it, but my compiler is telling me I'm missing "{" somewhere in the code. #include "std_lib_fa... |
Jul 5, 2016 at 1:47am
[4 replies] Last: For this error, it's saying that the compiler cannot find the prototyp... (by Little Captain)
|
by beginer04
setMouseCallback wrong
|
Hello, I have the following code usiing Opencv, Can somebody tell me how to call setMouseCallback because I have an error , more precisely at onMouse say that... |
Jul 4, 2016 at 7:00pm
[no replies]
|
by Cambalinho
how can i saving a string on a file?
|
i overloading the operator<< and operator>> for string: std::ostream& operator << (std::ostream& lhs, const string& rhs) { int stringsize=rhs.size(); ... |
Jul 4, 2016 at 6:46pm
[2 replies] Last: yes you have right. i was doing some errors and the problem is on my i... (by Cambalinho)
|
by technologist
vector stack behavior
|
Why am I getting the correct capacity for the 2nd example but no the first. This presupposes that 128 is wrong, which itr may not be. Could someone please clari... |
Jul 4, 2016 at 3:29pm
[11 replies] Last: That hit the nail on the head, especially the previous post. Thx to al... (by technologist)
|
by Wu zhen hai
type tyarit?
|
How to implement is_class is_union is_enum? Help!!!! |
Jul 4, 2016 at 2:37pm
[4 replies] Last: 'how to implement'? You can't. These are basically compiler internals... (by coder777)
|
by gedamial
Samsung Tizen Z3
|
Reported for inappropriate content and advertising |
Jul 4, 2016 at 2:00pm
[5 replies] Last: The point is, it was your comment that caused this thread to persist. ... (by MikeyBoy)
|
by nitisingh19
Ini file using c++ builder
|
How can i hide section in ini file using c++ builder. I want to remove section and want again copy back to ini file |
Jul 4, 2016 at 1:25pm
[8 replies] Last: [quote=Duoas]https://www.google.com/search?q=tinifile+example+c%2B%2B ... (by Duthomhas)
|
by dbrenchley
HELP ME Obiwan .. / undeclared reference to
|
In An Arduino environment using Atmel Visual Studio / Visual Micro .. attempting a call to an asm routine. having linker issues, I believe .. In a header .. ... |
Jul 4, 2016 at 8:46am
[1 reply] : Just out of interest, are there substantial advantages in programming ... (by closed account 48T7M4Gy)
|
by gr8flmommy
Comparing Negative Numbers
|
I am trying to create a program that compares a set of integers and outputs the min and max value. My code executes correctly for all scenarios except when I h... |
Jul 4, 2016 at 8:40am
[6 replies] Last: // Sets initial min and max values minVal == val; maxVal == val; S... (by closed account 48T7M4Gy)
|
by primem0ver
Question about the details of Importing and Linking
|
My project has taken a turn because Qt is just insufficient for the GUI for my application. Therefore, I am using .NET now. However, this is NOT a .NET questi... |
Jul 4, 2016 at 7:12am
[1 reply] : If you export a class, you're exporting everything in the class. If ... (by helios)
|