
please wait
by donvigor
why is this code not working?
|
so i just want to know why this code is not working...i know the problem is in the function createUniqueVector...but after looking and looking i still can't say... |
Mar 3, 2014 at 12:08pm
[4 replies] Last: thats right coder777 and Peter87...those petty petty things...thanks g... (by donvigor)
|
by Rockyy
array with dynamic string
|
Hi I am having a string called "Temperature" and i want to create an array which hold the value Temperature1,Temperature2,Temperature3..so on string name =... |
Mar 3, 2014 at 11:17am
[1 reply] : You do now attempt a ??? operator+ ( const char *, int ) Your code c... (by keskiverto)
|
by mlholder
Multiple files/Compilation error
|
Hello all, When compiling the following files, the error that I get is: In function `operator<<(std::basic_ostream<char, std::char_traits<char> >&, ArgSe... |
Mar 3, 2014 at 10:54am
[10 replies] Last: > Unfortunately I am not able to copy and paste the files in their ful... (by ne555)
|
by Dan Feerst
how to use a union
|
So I'm going to get right to the point asking what I need to know. I'll explain the reasoning below. I am new to c++ and not very accustomed to unions and struc... |
Mar 3, 2014 at 10:35am
[2 replies] Last: > is this possible? Yes. Any object may be examined as a sequence of ... (by JLBorges)
|
by tomdacat
c programming help
|
Hello i am making a level editor for my console game in c and cant seem to get file Input/output to work this code compiles with no warnings or errors but ... |
Mar 3, 2014 at 10:04am
[4 replies] Last: thanks! (by tomdacat)
|
by jasongog
New excersise
|
I stopped coding for a while because i don't have an idea of what program to make. Can anyone give me an idea? |
Mar 3, 2014 at 9:47am
[1 reply] : If you want a couple ideas to practice, you can find some exercise her... (by Zhuge)
|
by InfiniteLoop
Need help implementing deque functions
|
I have an assignment where I have to implement the member functions for a deque class. I've got most of them, but I'm completely stumped with the second erase f... |
Mar 3, 2014 at 8:47am
[1 reply] : The vector has insert: http://www.cplusplus.com/reference/vector/vect... (by coder777)
|
by Erinbear
HELP!!!!!!!!!! outputting primes within multiple sets of numbers
|
I am suppose to calculate and display the number of primes in the first 50 “chiliads”. I can easily find a prime or count of primes, but I cannot display t... |
Mar 3, 2014 at 8:30am
[2 replies] Last: I wonder where the problem is? Take this: long primeCount(long x, long... (by coder777)
|
by donvigor
bool true or false
|
am reading this piece of code and am having a lil tough time with line 14.. I have if not dup... which should mean if dup is different from the value of dup at... |
Mar 3, 2014 at 7:20am
[8 replies] Last: is ok the ideas man...I've also adopted your way of identation long ti... (by donvigor)
|
by jasongog
Fullscreen
|
Always when programs run they don't open in full screen by default. You must go to properties an change the settings. But i was wondering if there's a way you c... |
Mar 3, 2014 at 6:57am
[5 replies] Last: Thanks everyone. I will click on the solve button now. (by jasongog)
|
by ssjaditya
How to prompt user for multiple if statements.
|
Hello everyone, First questions on this forum, and i am very new at C++ and programming so forgive me if i seem a bit dumb. I need help wit... |
Mar 3, 2014 at 6:38am
[5 replies] Last: Switch is awesome it makes things 10 times easier for character choice... (by ssjaditya)
|
by giraffe1234
Templates!
|
I had to rewrite programs to make that work with a template. I have done this, but in the directions it says I need to specify requirements on the template par... |
Mar 3, 2014 at 4:05am
[3 replies] Last: > I need to specify requirements on the template parameter type, > an... (by JLBorges)
|
by hershize
Number Loop for .625 then 1.625 then 3.625 and etc
|
I am a noob and I need help with a number loop starting with .625 then to 1.625 then 3.625 then 5.625 and so on. Can anyone help me with this? double co... |
Mar 3, 2014 at 3:37am
[1 reply] : include <iostream> int main() { // .625 then to 1.625 then 3.625... (by JLBorges)
|
by stiches
References
|
I'm supposed to create a function that takes a char& argument and modifies that argument. In main, print out a char variable, call the function for that variabl... |
Mar 3, 2014 at 3:33am
[3 replies] Last: Well you are welcome! (by eyenrique)
|
by bookLearnin
Searching and Replacing in Files
|
Hello pro's, I have a problem with this project I'm working on, the code involves searching for and replacing a structure in a binary file. I have written a si... |
Mar 3, 2014 at 3:22am
[no replies]
|
by sajis997
const to non-const
|
Hi forum, I am using a third-party API function that returns a const reference as follows: const compute::buffer& getReadBuffer() const; B... |
Mar 3, 2014 at 3:04am
[no replies]
|
template specialization |
How can I make a template specialization for pair? Normally I did : template<typename X,typename Y> void temp() { pair<X,Y> temp; } template<> ... |
Mar 3, 2014 at 2:46am
[6 replies] Last: 1. Do not specialise an entire class if all that is required is differ... (by JLBorges)
|
by ldelsignore
Can't Create Static or Const Data Members
|
I have tried reading different descriptions of how the declarations of these variables are made and how they operate, but they don't seem at all clear to me. Ac... |
Mar 3, 2014 at 2:23am
[1 reply] : I figured out my mistake. I carelessly defined my class within main. (by ldelsignore)
|
by Huppa
Getch(); to terminate, or continue loop
|
I'm having problems with ending the loop/program. What is it that I'm doing wrong that it just keeps looping no matter what I type in? //inches_conversion.cp... |
Mar 3, 2014 at 2:08am
[1 reply] : First of all, it should be #include <iostream> // No .h //#include <c... (by long double main)
|
by giraffe1234
Array Help!
|
In my program assignment, I have to write a template sort routine using insertion sort algorithm. Then I have to test using array of primitives, and an array ... |
Mar 3, 2014 at 1:26am
[3 replies] Last: @long double main and @MiiNiPaa thank you! (by giraffe1234)
|