by Mixelplik
Binary Search Not Working
|
|
[2 replies] Last: ah figured it out, I need a second variable to return. One bool for th... (by Mixelplik)
|
by Dcull
Inlining
|
|
[6 replies] Last: specifying the inline keyword is never a guarantee that the compiler... (by Smac89)
|
by Dcull
Text Class Error - '.' token, expected unqualified-id
|
|
[9 replies] Last: You are properly specifying the name of an argument for your construct... (by MikeyBoy)
|
by cwspangler
Trying to learn loops (practice problem)
|
|
[1 reply] : This is incorrect: while ( option != "1" || "2" || "3" || "4" ) Wh... (by long double main)
|
by Edward01
Copy from string
|
|
[2 replies] Last: system("pause"); I hate this, it`s a resource hog: http://www.cplusp... (by closed account EwCjE3v7)
|
by Khillz3000
Cannot get the "getline()" function to work in a loop
|
|
[5 replies] Last: If you're mixing formatted and unformatted extraction, and you don't n... (by cire)
|
by hbkmad
Reading and Writing binary files
|
|
[3 replies] Last: > So everytime I want to write/read to/from file > I have to use the ... (by JLBorges)
|
by linkpwns
Problem with using find()
|
|
[2 replies] Last: It appears I had overengineered it, thank you! (by linkpwns)
|
by Edward01
using fgets
|
|
[2 replies] Last: Why are you using fgets()? Since this is a C++ program getline() would... (by jlb)
|
by Nata
reference problem
|
|
[2 replies] Last: The t array reference in main() isn't needed. Here is your code, c... (by Catfish666)
|
by fahmankhan75
File open error
|
|
[6 replies] Last: how did you call the function ? works fine on mine #include <iostr... (by nvrmnd)
|
by valu1989
c++ or python for Finance
|
|
[6 replies] Last: I am inclined to suggest you start with Python though (make sure it... (by closed account EwCjE3v7)
|
by Ryan5920
While loop is a bit off...
|
|
[1 reply] : Using eof() as a loop condition is almost always wrong. Read: http:/... (by Peter87)
|
by tanyamam
spoj question
|
|
[no replies]
|
Junior computing contest question |
|
[1 reply] : inside the while loop, you're redefining a,b,c,d as local variables. I... (by zsteve)
|
by hunkeelin
Using pointers to iterate through char
|
|
[1 reply] : Also, pointers are not like arrays right? so how can a pointer incre... (by Catfish666)
|
by pintee
Changing Static Text inside modal dialog box
|
|
[no replies]
|
by ccdare
Does[code]string a = string(); same with string a;[/code]?
|
|
[3 replies] Last: > why I bother explicitly offer a default constructor when have other ... (by JLBorges)
|
by htx281
While or do-while loop??
|
|
[2 replies] Last: The reason why you're always getting "wavelenght" is because you're us... (by Annatar)
|
by ccdare
Why string reference can refer to a C-style string?
|
|
[15 replies] Last: Thanks. (by ccdare)
|