
please wait
by dragonboy46
Car Navigation Software using C++?
|
Hi All, I'm Usman and I was thinking about creating a navigation system of my own car in C++. Is it possible in C++ and What will I need to implement it ? I wa... |
May 23, 2015 at 2:31am
[2 replies] Last: This is possible in C++. The minimum things required for this is a dev... (by BlatantlyX)
|
by csstudent123
Program continues even after catching exception?
|
Why my program contiues even after catching..it prints out even the wrong dates/months #include <iostream> #include <string> using namespace std; cla... |
May 23, 2015 at 12:57am
[8 replies] Last: Thanks, its clearer now...I will give it a try (by csstudent123)
|
by nsahawks7
Passing Class Object by ref help
|
I got everything working in my program except I get an error when passing my object by reference: //main.cpp|50|undefined reference to `showOrder(Sandwhich)'|... |
May 22, 2015 at 11:53pm
[2 replies] Last: Line 23 of the first block of code. You forgot an ampersand. Gah, st... (by nsahawks7)
|
by Gamer2015
static polymorphism
|
Hey guys, static polymorphism may look something like this: // Example program #include <iostream> #include <string> #include <vector> template<typename T> ... |
May 22, 2015 at 7:25pm
[no replies]
|
Using c++ to modify a graph drawing in AutoCAD |
Good morning, I've been searching the internet looking for some idea of where to go with this: I have an AutoCAD drawing I've drawn of a Duval Triangle (Graph)... |
May 22, 2015 at 7:16pm
[1 reply] : http://usa.autodesk.com/adsk/servlet/index?siteID=123112&id=773204 I ... (by Computergeek01)
|
book library program |
An assignment i was recently given requires us to take file input from the command line from 5 files named: 1. library_holdings_input_file 2. book_request_inpu... |
May 22, 2015 at 3:16pm
[no replies]
|
by aliakbar
Is there any implementation of Louvain method “Finding communities in large network” for Visual C++ on Win 8
|
I am looking for source code of Louvain method community detection for Visual C++(in Visual Studio) on Windows based on This paper it can be seen from this addr... |
May 22, 2015 at 2:24pm
[no replies]
|
by klimentije33
Calling a Base class constructor from a derived class.
|
Hi everyone, I'm just a beginner so don't judge me. I have searched on Google before I came here but it didn't help me really. Here is the problem: I have an ab... |
May 22, 2015 at 12:09pm
[5 replies] Last: Okay, thanks everyone. I've completed it. :) (by klimentije33)
|
by csstudent123
NT36 Error
|
When I try to submit a post, it keeps on showing NT36 error. Is it my browser or the site? |
May 22, 2015 at 11:04am
[2 replies] Last: Safari, Yosemite http://postimg.org/image/piu41b1u1/ (by csstudent123)
|
by mjamesball9
DO LOOP Problem
|
Hello, this program is supposed to receive a numbers from the user to figure out a fast way to solve exponential equations. i.e. 2^3=8 What is wrong with my ... |
May 22, 2015 at 1:35am
[6 replies] Last: thanks a ton @R23MJ (by mjamesball9)
|
by R23MJ
Setting up SFML Android project?
|
I realize this isn't the SFML Forums, but help over there is hard to come by. I asked a question yesterday and got no replies. Is anyone here familiar with how ... |
May 21, 2015 at 10:35pm
[2 replies] Last: See, building SFML was the easy part. The second part is where I am co... (by R23MJ)
|
by msskiran
Days difference between two dates using boost::date_time
|
Are there any APIs available in boost::date_time to get the number of days between two dates that is also calendar specific? Example, Number of days between ... |
May 21, 2015 at 9:30pm
[1 reply] : 501 days. I presume you are talking about discounting weekends and p... (by Duthomhas)
|
File I/O help |
if my text document starts with (example) 4 letters, I write 5 letters to the file it will only display the first 4. basically whatever number of chars I start ... |
May 21, 2015 at 9:16pm
[5 replies] Last: It's ok. I did it for you. :) #include <iostream> #include <fstream> ... (by jasonwynn10)
|
by wh1t3crayon
How to use a JSON parser to read and handle data from a .json file?
|
I've included jsoncpp ( https://github.com/open-source-parsers/jsoncpp ) in my project, but I have a couple of questions. One, do I have to build the project? T... |
May 21, 2015 at 6:35pm
[3 replies] Last: Wait now I got it. I'm not sure why the OP on stack overflow was using... (by wh1t3crayon)
|
by stefan65
Network Programming With Shared Data Storage
|
A short introduction: A vector of structs shall be provided by a server via network. Clients store its structs in the server's vector and clients search for s... |
May 21, 2015 at 6:25pm
[2 replies] Last: My main goal is availability for the clients and the integrity of the ... (by stefan65)
|
by miguel96
How to access a specific line in a file
|
How do I read only a specific line in a txt file and save the number in the next line in a variable? |
May 21, 2015 at 5:05pm
[3 replies] Last: The above code should assist you then, what all have you tried. I cann... (by R23MJ)
|
by Aaa000
'std::out_of_range' error
|
Hi, I'm a beginner with C++ and don't know much about it. I compiled the following codes without error, but while running I get the following error: terminate c... |
May 21, 2015 at 3:02pm
[1 reply] : Please use code tags when posting code. You need to be careful about ... (by jlb)
|
by Homberto
Passing Objects As Function Parameters
|
My research has not helped me solve this one. edge.h: class Edge { private: Vertex start; Vertex end; int weight; public: Edge(Vertex&, Vertex&, int... |
May 21, 2015 at 1:48pm
[3 replies] Last: There is another solution to your particular problem. Your Edge class... (by andywestken)
|
by batmancn
Does boost include in this web site ?
|
Boost said he has been included in C++11 standard. Does boost include in this web site ? |
May 21, 2015 at 10:55am
[1 reply] : Boost as such is not included in the C++11 standard. It is a large col... (by keskiverto)
|
by pacman169
Clarification on magic numbers
|
Hello, I`m interested maybe at some point implementing a hashing function, but before that I need to know the basics. For example, http://en.wikipedia.org... |
May 21, 2015 at 10:23am
[1 reply] : The meaning of keyword static in C++ does depend on context. C has a ... (by keskiverto)
|