by whitesnow
float = (int / int) * 100 ? Doesn't work!
|
|
[13 replies] Last: NB: Suffixes are often better in Capitals: 3.1415926f 3.1415926... (by closed account z05DSL3A)
|
by Mee
Printf with Vectors.
|
|
[8 replies] Last: Ah ha, I see the difference. << not +. Gotcha. Silly me. Much a... (by Mee)
|
by chung
problem with eof()
|
|
[1 reply] : eof() does not return true until you have already tried and failed to ... (by firedraco)
|
by spcfish
Problem with switch/case statements
|
|
[9 replies] Last: heh..I never noticed the missing breaks. Good catch. (by yoked88)
|
by rapduty
for an array of substrings in an array of source strings
|
|
[2 replies] Last: I know...I have tried this code and still cannot get the correct answe... (by rapduty)
|
by anon2343
IS there anyway i can test or check if a user enters a certain data type...?
|
|
[2 replies] Last: or just use the isdigit(), isalpha() functions. I love this functions,... (by Seraphimsan)
|
by e0ne199
load text files into array
|
|
[1 reply] : If you know how to use file streams it should be quite simple. I have ... (by tummychow)
|
by ilinan
Having problem with linear search function
|
|
[1 reply] : Reformat the entire code example. Highlight and press the <> button o... (by kempofighter)
|
by whitesnow
Continue statement to skip 1 part of a loop?
|
|
[5 replies] Last: Ok thanks a lot I got it working. (by whitesnow)
|
by whitesnow
If statement not working correctly.
|
|
[3 replies] Last: Cool thanks a lot it worked. (by whitesnow)
|
by Mortifera
Combination with template and vector
|
|
[11 replies] Last: @kempofighter, tnx on advice! I know for that, but for now, I just wan... (by Mortifera)
|
by tysonc
Adding values for each iteration of for loop
|
|
[3 replies] Last: Uh, why not? for (int x = 0; x < somenum; x++) { num = // your... (by tummychow)
|
by Unicyclist
problem with cin.getline(name) and cin.get(name)
|
|
[5 replies] Last: Be careful with mixing cin >>, getline and get. get does not clear the... (by tummychow)
|
by CometJack
How do I send an email/text message in C++?
|
|
[3 replies] Last: I am afraid that MFC or API does not provide you with email functions.... (by maikel)
|
by RC325
String Concatenate using non standard library functions...
|
|
[3 replies] Last: Full code output: stringLength(education): 9 stringLength(schoo... (by RC325)
|
Trying write a basic benchmarking code but its not working |
|
[4 replies] Last: I couldn't find any optimization remotely close to reorder instruction... (by AlwaysLearning)
|
by donazri
problem with I/O
|
|
[1 reply] : Oh you're so close :). Just need to include the strings library: ... (by sammy34)
|
by marvolo1300
greater than and less than in if statements
|
|
[2 replies] Last: I fixed it with the help of this page: http://cplusplus.com/doc/tutori... (by marvolo1300)
|
by myoung34
Simple breadth first question
|
|
[5 replies] Last: Even the second version? Hm.. Well, what you could also do, is to i... (by imi)
|
by dublecee
Program that estimates the value of the mathematical pi.
|
|
[1 reply] : You need to implement something like a sum [ ( - 4 )^n / (2*n+1) ] ... (by maikel)
|