by megascruples
Secant Method
|
Im supposed to be finding the roots on a function using the secant method. Im pretty sure i have the... |
Feb 20, 2014 at 10:15pm
[2 replies] Last: Thanks for the help! Turns out I had the wrong variable with >= tolera... (by megascruples)
|
Problem with Code::Blocks 13.12 |
Hi, I started learning C++ recently, using code::blocks 13.12 and and I have to face a weird pro... |
Feb 20, 2014 at 10:10pm
[2 replies] Last: Thank you very much, problem solved! (by closed account oybCM4Gy)
|
by Ali9289
Run-time check failure #2:Stack around the variable 'slot' was corrupted.
|
I'm running this code but I'm getting an error that I can't seem to fix. However, my code compiles ... |
Feb 20, 2014 at 10:03pm
[2 replies] Last: Thank you for the quick reply. So would I set the slot array differen... (by Ali9289)
|
by MikeMMK1990
Run time Check Failure: The variable being used is not initialized
|
I'm not sure why I'm still getting this error I thought I initialized fourteenPercent correctly but ... |
Feb 20, 2014 at 9:11pm
[1 reply] : If copiesSold is 4000 or less, tenPercent will be initialized but ... (by long double main)
|
by NikaTheKing
pleaseeee help me what is my mistake
|
Tell me what is wrong please I have got headache with it already i cant fix problem help please ... |
Feb 20, 2014 at 8:49pm
[2 replies] Last: thank you very much :) it worked Edit: No, in fact i need it for my ho... (by NikaTheKing)
|
by Nogroth
weird constructor error
|
So I'm trying to make a class (called 'collection') which will have an array of many objects of a di... |
Feb 20, 2014 at 8:11pm
[6 replies] Last: Line 25 in the OP's code is a function declaration. struct star { ... (by cire)
|
by fapyfapy
Remove copies in an array
|
Sorry I made a silly mistake |
Feb 20, 2014 at 7:06pm
[no replies]
|
by talhabhatti5
For loop problem
|
Ok so I'm trying to make a program which will tell that how many pancakes 10 people ate indivdually.... |
Feb 20, 2014 at 7:03pm
[7 replies] Last: #include <iostream> using namespace std; int main() { int x... (by Chriscpp)
|
Troubles with getting random number inside "while" loop using structures. |
Hello everybody. I'm writing a program (actually a game) about fighting with opponents on the arena.... |
Feb 20, 2014 at 6:36pm
[2 replies] Last: Thank you for help, your reply gave me a point. But I managed to do it... (by Endriu Golara)
|
by Alby94
Auto specifier
|
Why cannot deduce the type? vector <int> vec; auto Itr = vec.iterator (); Source code... |
Feb 20, 2014 at 6:30pm
[2 replies] Last: The method iterator() of vector's template do not exists.. (by Alby94)
|
by davelaser
Arduino serial communication
|
I am using a very simple bit of code to write to a device and get the result back. i.e. I send ?T a... |
Feb 20, 2014 at 6:05pm
[6 replies] Last: atually that sounds like an good idea so I could set up 3 led digits (... (by davelaser)
|
what will be the output of the following lines of code |
I was asked this question in a technical interview and i was not aware about it. Please help me to u... |
Feb 20, 2014 at 6:03pm
[2 replies] Last: Did they give any reason why they were expecting you to know such poin... (by MikeyBoy)
|
by Dcull
Inheritance and Member Function Overloading
|
Hey Guys, So, just for full disclosure, here is the full question I am working on: a. Start with... |
Feb 20, 2014 at 5:56pm
[11 replies] Last: undefined reference to `Circle::Circle(Point const&, double const&)'... (by kevinkjt2000)
|
String matching code |
I need help with a code that gives the closest match to a given string of data-the string being a mi... |
Feb 20, 2014 at 5:19pm
[2 replies] Last: See: http://en.wikipedia.org/wiki/Levenshtein_distance http://en.wikip... (by JLBorges)
|
by entchen
Zeile einlesen Anzahl der Zahlen ohne Whitespace
|
Hallo, ich möchte gerne von einer eingelesenen Zeile wissen, wie viele Zahlen dort vorhanden sin... |
Feb 20, 2014 at 3:57pm
[1 reply] : Dafür kannst du strtok() verwenden: http://www.cplusplus.com/refer... (by coder777)
|
prime number program doubt. |
Q1 for(i=2;i<=num/2;++i) //what does this full thing means??? If(num%i==0) this is the co... |
Feb 20, 2014 at 3:31pm
[2 replies] Last: Thanks (by supershooverine)
|
by Mch5904
Open and Analyze a HTML Document
|
Hi, so I am really having a difficult time with an assignment. We are supposed to use loops to open ... |
Feb 20, 2014 at 3:18pm
[13 replies] Last: You will need to reopen the file somewhere between line 6 and line 12.... (by kevinkjt2000)
|
by bugisha
Square and floats please read
|
I made a program which is doing something but that is not important imoportant is that it is not "co... |
Feb 20, 2014 at 3:07pm
[3 replies] Last: Try using the iomanip lib. http://www.cplusplus.com/reference/iomanip... (by BrotherFromAnotherMother)
|
by RemmyDZ
Alternative to nesting for-loops
|
Hello all, I am writing a program, and right now there's one function which makes use of nesting ... |
Feb 20, 2014 at 2:45pm
[8 replies] Last: I'm glad I can say that this problem is now solved! Here's what I did... (by RemmyDZ)
|
by talhabhatti5
Program won't work !
|
I don't know why is it not working. The program seem fine to me. All it has to do is keep saying " ... |
Feb 20, 2014 at 1:22pm
[13 replies] Last: Its working just fine now. I removed continue from the code added a wh... (by talhabhatti5)
|