by catsonmars
Understanding bit shifting
|
|
[2 replies] Last: >>8 shifts 8 bits, which is 1 byte. So a 2-byte integer 0xabcd become... (by jonnin)
|
LiveEdu launches Soft Indiegogo Campaign |
|
[no replies]
|
by JasonMcG
Vector<Enemies> moving enemies
|
|
[5 replies] Last: std::this_thread::sleep_for is one option. http://www.cplusplus.com/r... (by Thomas1965)
|
Having problems with a simple encryption program |
|
[10 replies] Last: Using that method is a good tip for your future debugging career. . ... (by MarbleHornets)
|
by samcro
For loop to calculate an amount for a certain month period
|
|
[1 reply] : You’ve been asked to create a loop which modify an integer value: - ... (by Enoizat)
|
by jollyholly11
Help with string replace lab
|
|
[4 replies] Last: Works even better with #include <iostream> (by closed account 48T7M4Gy)
|
by aosborne
Program compiles, but won't give correct output
|
|
[6 replies] Last: Correct. You clearly should not compute remainder from the Second, sh... (by keskiverto)
|
by rayyrayy
error: ‘class Rec’ has no member named ‘mycity’
|
|
[1 reply] : What don't you understand about the error message? You haven't defined... (by jlb)
|
by samcro
Flipping a boolean value upon user entry
|
|
[4 replies] Last: Got it! Thank you so much Jonnin! You are a life saver :) (by samcro)
|
by Kourosh23
deep copy logic c++
|
|
[4 replies] Last: Ok, so there are some terminology issues here. An object has member va... (by Duthomhas)
|
by Kourosh23
copying objects c++
|
|
[3 replies] Last: @coder777, thanks for your help. -----------------------------------... (by Kourosh23)
|
by p4nd4
Initializing Variables
|
|
[1 reply] : https://en.wikipedia.org/wiki/Initialization_(programming) (by mbozzi)
|
by benjylol003
Can a base class access variables in its derived class?
|
|
[5 replies] Last: @gunnerfunner Thanks for the advice :)) I did compile my program befor... (by benjylol003)
|
by beemo
Not user friendly?? idk why
|
|
[3 replies] Last: ^^thanks! it worked:) (by beemo)
|
by cibide
Can't find error on return-by-constant-reference
|
|
[2 replies] Last: thank you! :) (by cibide)
|
by beemo
?? already submitted my answer but im confused
|
|
[2 replies] Last: thanks! (by beemo)
|
by JasonMcG
Extrapolating line and moving object - SFML
|
|
[3 replies] Last: if you are just moving at a fixed rate in 2-d, just add to the current... (by jonnin)
|
Store if-else statement |
|
[3 replies] Last: two concepts that might help you: a "state" variable, like an enum, ca... (by jonnin)
|
by Jaggy1997
Fibonacci sequence
|
|
[2 replies] Last: Thx it worked! (by Jaggy1997)
|
by bluefrog
stringstream into 4 variables without comma
|
|
[2 replies] Last: #include <string> #include <iostream> #include <sstream> int main() ... (by Chervil)
|