by preston
factors of 2 code
|
|
[3 replies] Last: Another way would be to cast the double to an integer static_cast<i... (by giblit)
|
by heroicJ
Input not accurate
|
|
[2 replies] Last: The input is a bunch of words. It could start with numbers, which sho... (by heroicJ)
|
by Sam99
I need just a formula
|
|
[1 reply] : That is not a programming question. (by keskiverto)
|
by gabrielh
String constructor and iterator
|
|
[3 replies] Last: Fantastic! This is great help! (by gabrielh)
|
by Guzfraba
end() returns lvalue ?
|
|
[3 replies] Last: Thanks,you saved me again.It makes sense now :). (by Guzfraba)
|
Difference between i++ ++i |
|
[2 replies] Last: Thank you for your quick response and the answer. (by closed account EwCjE3v7)
|
by roycs96
Expected unqualified-id
|
|
[6 replies] Last: Thanks CaptainBlastXD, works with your edits. Greatly appreciate all t... (by roycs96)
|
by venros
c++: numbers to text not working
|
|
[4 replies] Last: Got it to work guys ty #include <iostream> #include <string> usi... (by venros)
|
by agure
VS C++ Windows Form HELP!
|
|
[3 replies] Last: " windows form C++ " is actually called C++/CLI not to be confused w... (by closed account z05DSL3A)
|
by Alby94
Function's pointer cast
|
|
[4 replies] Last: It should also be noted that in this code, some_func is not a function... (by LB)
|
by jheard901
Typecasting Help
|
|
[8 replies] Last: Mikey, you sir are AWESOME. :D Ok, so I was able to correct the flaw ... (by jheard901)
|
by alsade
problem with initializing static class member
|
|
[6 replies] Last: The problem is that `String::s` doesn't exist. A class definition only... (by maeriden)
|
by xpg94
Overloading the + operator?
|
|
[6 replies] Last: The difference is that the const keyword prevents you from making ch... (by MikeyBoy)
|
by Ch1156
Can I use HTML or XML to make an UI?
|
|
[1 reply] : Of course you could. As long as whatever UI toolkit you're using allo... (by Disch)
|
by Sythical
Storing the address to an array in a pointer
|
|
[3 replies] Last: oops, took too long to edit my post. no, it is an actual collection, ... (by Jaybob66)
|
by Penanito
Pointer to classes
|
|
[8 replies] Last: That still makes no sense whatsoever. (by Avilius)
|
by sanasuke15
Words in reverse order, string
|
|
[1 reply] : A first step might be to identify each individual word in the string. ... (by Chervil)
|
by Rodderick
Problems to understand vector allocation
|
|
[4 replies] Last: i++ is just another way of saying i += 1 or i = i + 1 . So, if i... (by MikeyBoy)
|
by binso
Inserting a new node.
|
|
[6 replies] Last: It would be data which nodePtr1 will point to. nodePtr1 = createNod... (by binso)
|
by engr
what is the problem here?
|
|
[4 replies] Last: it worked on OrWel DEV C++ but error on Turbo C++.. BUt After working... (by engr)
|