
please wait
by alx119
Some advices please
|
Hi, I would like to find a job in programming(c++ for automotive industry or c#.net for other jobs), but my CV is not so impressive, so I would like to start... |
Jul 29, 2016 at 1:34pm
[no replies]
|
by novapack
displaying data from structure
|
Am trying to learn linked lists in c++ but I have failed to display what I enter in the linked list can anyone help me find what am missing out please. here... |
Jul 29, 2016 at 1:28pm
[6 replies] Last: Oh, it helped you. Glad it helped :) (by Naughty Albatross)
|
by Jezus93
Random sequence
|
Need help with this problem I can't seem to get the concept of the random sequence occurrence. Create a function/method/procedure that returns a random n... |
Jul 28, 2016 at 9:13pm
[6 replies] Last: Im so blind lol Thanks guys fixed it!!! (by Jezus93)
|
by Antman777
changing private data of a class object in a vector...using functions!
|
Hello everyone. I'm a bit new here so sorry if I make a mistake somewhere. I was recently attempting to make a working RPG, but during my tests I hit a bit of ... |
Jul 28, 2016 at 6:52pm
[8 replies] Last: Well, I tried what you suggested coder and my program still isn't taki... (by Antman777)
|
by mmahdavyrad
binary file search and extract
|
I have thousand binary files in a remote server. with a lot of information in each of them. every thousands file is in a zip folder. I should go to each file a... |
Jul 28, 2016 at 6:12pm
[1 reply] : http://www.cplusplus.com/reference/istream/basic_istream/seekg/ > Ho... (by ne555)
|
by DICE21
How To Save Info From Previous Uses of Program???
|
So, I was wondering two things. First, are username password systems coded with C++ or another language of code? Second, how would you store this information... |
Jul 28, 2016 at 11:00am
[2 replies] Last: Second, how would you store this information. You can store the inf... (by Thomas1965)
|
by palecat
Exception not throwing
|
Hello everyone. I've created a simple conversion code with an exception handler but the exception isn't throwing with a negative number. Any ideas? //code: ... |
Jul 28, 2016 at 9:58am
[4 replies] Last: You're welcome - glad it worked out. (by MikeyBoy)
|
by davidgoder
random numbers
|
hello, I want to write simple implementation of genetic algorithm but I have a problem even at the beginning :d when i initialize my "random" cromosomes they a... |
Jul 28, 2016 at 7:10am
[2 replies] Last: thank you very much i thought that was the problem but for same reason... (by davidgoder)
|
Operator overloading issues---help |
nvm |
Jul 28, 2016 at 3:33am
[2 replies] Last: [quote=TheIdeasMan]Just a note for the future :+) There also shouldn'... (by Naughty Albatross)
|
by jdsierra9
increment off by 1
|
Hey Im trying to do a currency converter for USD and EUR. The program has to ask first what conversion is desired, then what the conversion rate is, and then it... |
Jul 28, 2016 at 3:09am
[5 replies] Last: :) (by closed account 48T7M4Gy)
|
by bruhh1296
Need help with fraction class
|
I desperately need help with constructing a fraction class which I can't seem to get correct. I'm wondering if anyone can help me with the fraction class. This ... |
Jul 28, 2016 at 1:36am
[2 replies] Last: http://www.cplusplus.com/forum/beginner/195002/ (by closed account 48T7M4Gy)
|
Clarification on Libraries |
Hi All, I've been reading up on libraries, and I think I get the general idea. There are still some fuzzy parts, and I was wondering if someone could clarify i... |
Jul 27, 2016 at 10:38pm
[6 replies] Last: You don't need a lot of things that make life easier, like compilers... (by Duthomhas)
|
by c00012
program can't read data from text file... solution?
|
hi, I got a problem in writing code for login function of my program. I wanted to make program check user id and password from plain text file(user.txt) 1.fi... |
Jul 27, 2016 at 3:05pm
[1 reply] : Why all the pointers? Why not just use "normal" non-pointer instances?... (by jlb)
|
by surplus
'error C2888: 'std::hash' : symbol cannot ...
|
All, I investiagted a lot but the answers I found don't help me out. I'm migrating code from VS 2008 to 2010. The piece of code which causes me problems is quie... |
Jul 27, 2016 at 2:54pm
[3 replies] Last: The solution is like this : //namespace tr1 //{ template<> st... (by surplus)
|
by eph
please help i cant fix the error with cin
|
#include<iostream> #include<string> #include<queue> #include<conio.h> #include<stdlib.h> #include<cstdio> using namespace std; const int MAX=... |
Jul 27, 2016 at 8:15am
[1 reply] : http://www.cplusplus.com/forum/general/194967/ That's the first error ... (by closed account 48T7M4Gy)
|
by eph
i cant fix the error
|
#include<iostream> #include<string> #include<queue> #include<conio.h> #include<stdlib.h> #include<cstdio> using namespace std; const int MAX=1000; c... |
Jul 27, 2016 at 8:14am
[1 reply] : http://www.cplusplus.com/forum/general/194968/ And that's the second e... (by closed account 48T7M4Gy)
|
Alarm Clock Issues |
So I'm trying to program an alarm clock, and I feel i have most of the program there but whenever i go to launch, it says that there are errors in the exe and s... |
Jul 27, 2016 at 6:10am
[16 replies] Last: It's not a huge amount of work but it would pay off if two classes T... (by closed account 48T7M4Gy)
|
by Snick
C++ Challenge
|
I cant figure out how to print the correct dollar amount in words. Any help would be greatly appreciated. |
Jul 27, 2016 at 4:40am
[9 replies] Last: First step: Concentrate on how many cents in the amount and the number... (by closed account 48T7M4Gy)
|
by codebusters
Create a pointer of a struct which is inside a class
|
Hi, I want to create a pointer of a struct in a function, func, which is in my main.cpp. The struct is a private member of class Foo, but the function, func, is... |
Jul 27, 2016 at 1:33am
[2 replies] Last: @Necip, I knew I was doing something silly. Thanks a lot! (by codebusters)
|
by n4nature
Predicate function for deleting vector elements
|
Hi, vObjects.erase(std::remove_if(vObjects.begin(), vObjects.end(), (wzSolId) { return wzId == object.m_Id }), vObjects.end()); I have a vObjects vec... |
Jul 26, 2016 at 11:31pm
[1 reply] : > But the compiler doesn't recognize "object" It's low on magic. Perh... (by ne555)
|