
please wait
by dbrandts
Keeping The Output Window Open
|
Hi all, My program accepts strings, places them in a vector and then "bleeps!" out words of my choosing, in this case, "broccoli". But I'm having trouble keep... |
Jun 24, 2014 at 8:46pm
[2 replies] Last: Thank U Stewbond. (by dbrandts)
|
by Salman0349
File Handling and Structs
|
Here I have problem with the delete function i have to delete a student's record whose roll no is given but my delete function does not work fine ........ ... |
Jun 24, 2014 at 8:19pm
[12 replies] Last: Thank you Very Much Bro I'm Gonna Try that and hope it will work (by Salman0349)
|
by Bogeyman
"std_lib_facilities.h" not working
|
I have recently started learning to program with C++ using the book Programming, Principles and Practice Using C++ by Bjarne Stroustrup, Second Edition. Early o... |
Jun 24, 2014 at 8:19pm
[8 replies] Last: does mingw not have a 4.9 port yet? (by Little Bobby Tables)
|
by vtk
inputFile is transfering over into the array and showing but is dissapearing when the rest of my code is opted in
|
#include <iostream> #include <fstream> using namespace std; typedef int GradeType ; float findAverage (const GradeType, int); int findHighest (const ... |
Jun 24, 2014 at 7:37pm
[6 replies] Last: yeah the code is different now than the one i posted and runs fine, im... (by vtk)
|
by TexanMonkey
How do APIs callback to class members
|
I've been creating an API and I'm now stuck on callbacks. There are many APIs that allow callbacks to class members(e.g. Windows API) using a void pointer to th... |
Jun 24, 2014 at 7:08pm
[6 replies] Last: The API needs to be compatible with many different compilers and not ... (by Disch)
|
by jazz77
Top-Down Approach
|
I need help with a problem and to put together a program solution. problem solving, arithmetic operations with parenthesis in expressions, and with the use of... |
Jun 24, 2014 at 6:32pm
[no replies]
|
by robbagus
2 errors the moment I start a new project, LNK2019 and LNK1120
|
I just started a new project trying to do my work, but I get 2 errors right off the bet. The 2 errors are: 1. error LNK2019: unresolved external symbol _m... |
Jun 24, 2014 at 5:40pm
[1 reply] : you need a main in your project (by Little Bobby Tables)
|
by loyola
C++ help i'm lost?
|
dealing with Scope of Function practice. #include <iostream> using namespace std; void Function_One() { cout << "You are in Function_One." << endl; ... |
Jun 24, 2014 at 3:59pm
[2 replies] Last: That question doesn't make any sense to me either. The function defin... (by IWishIKnew)
|
by jasonkalbo
C++ Arrays,functions Question/Problem
|
This is the Question: Problem Write a program to find all pairs of integers such that their sum is equal to a given integer number N and the second number res... |
Jun 24, 2014 at 2:29pm
[1 reply] : well firstly your thread is "C++ Arrays,functions Question/Problem", b... (by mutexe)
|
by homing
vector subscript operator overloadig
|
Hi, To get a value I would always use setter and getter. Would it be much better (performance) to use vector subscript operator overloading? and does vec... |
Jun 24, 2014 at 1:55pm
[9 replies] Last: For maps it does add unexistent elements to it. For vector it is just ... (by MiiNiPaa)
|
by sicilicide
Recursive modification of map
|
I am having trouble with recursively modifying a <string, int> map (NCPB) -- when I call for what should be existing values in the map, I get "junk" values back... |
Jun 24, 2014 at 1:06pm
[3 replies] Last: Thanks everybody; I'll give that a try. (by sicilicide)
|
by dangutdavid
forensic tool
|
Build an automated forensics tool. This could be to grab volatile evidence from a MAC or a Windows machine. It could also be to collect GPS evidence from mobile... |
Jun 24, 2014 at 12:25pm
[2 replies] Last: Thanks Canis (by dangutdavid)
|
reference count of an object |
Hi, I have a question regarding reference count of an object. How i'll be able to know that how many pointers are pointing to my object..... |
Jun 24, 2014 at 12:15pm
[3 replies] Last: As I said, there is no way. It is technically impossible to make refer... (by MiiNiPaa)
|
by dbrandts
simulating the square() function
|
Hi all, I have the following exercise to complete: Implement square() without using the multiplication operator; that is, do the x*x by repeated addition (s... |
Jun 24, 2014 at 11:30am
[8 replies] Last: I would also use a nested for loop But that's horribly inefficient. ... (by Chervil)
|
by shimansh
compilation problem
|
sir/madam i have written a programme in dev.c++ then i went for compilation,it asked where the programme file has to be saved. i entered the location and th... |
Jun 24, 2014 at 8:22am
[1 reply] : YOU CAN'T USE A PROGRAM? HOW CAN YOU TRY TO PROGRAM? (by iQChange)
|
by Olyboy16
Creating non-text readable binary files
|
Hi guys, i've google everywhere for this topic but didnt find a suitable answer. I'm currently trying to create binary file will not be able to be read as texts... |
Jun 24, 2014 at 7:25am
[3 replies] Last: http://en.wikipedia.org/wiki/XOR_cipher Or http://www.boost.org/doc/li... (by MiiNiPaa)
|
by ben han solo
Help c++ number combinations
|
how to get all the possible combinations for 4 digits from a 5 digit number. i need a pair that has both 5 digits and four digits. their sum must be equal to a... |
Jun 24, 2014 at 1:31am
[2 replies] Last: -ask for user input num -if num < 10000 or >= 100000, ask again -loo... (by prestokeys)
|
by jereme88
Issue with svd_econ() function from Armadillo library
|
Hi, I'm new to C++. I have an issue with the svd_econ() function from the Armadillo library. I ran the following code on Visual Studios 2012. I'm trying to fit... |
Jun 24, 2014 at 1:00am
[no replies]
|
by Binarydude87
OpenGL - Draw on top of image
|
This is my first time using opengl and I am experimenting with adding/drawing polygons/points/etc. on top of a PPM image. The image is already loaded when the a... |
Jun 23, 2014 at 10:53pm
[5 replies] Last: Thanks guys (by Binarydude87)
|
by Ozymandias
Sort and Sum
|
Hi.! can anyone tell me what is wrong with this function.? double sort_sum(std::vector<double>& vec) { std::multiset<double> mset(vec.begin(), vec.... |
Jun 23, 2014 at 10:38pm
[1 reply] : http://www.cplusplus.com/reference/set/multiset/erase/ the range is [)... (by ne555)
|