by studentCs
How to move the whole figure horizontally in c++
|
|
[2 replies] Last: worked, but still cant move it horizontally (by studentCs)
|
by wafeeqg
Pass a structure as a pointer to function of other type
|
|
[6 replies] Last: This function's parameter data seems to be pointer to an array with f... (by keskiverto)
|
by ceps1195
Entering a char or a string
|
|
[4 replies] Last: Hmmm....I know global variables have their own usage and stuff but I d... (by rjvc)
|
by GunR
Error "Expected unqualified-id '(' token" in line 1
|
|
[1 reply] : A class declaration needs to end with a semi-colon, which you've misse... (by tipaye)
|
by Collwyr
understanding some code
|
|
[9 replies] Last: Almost overlooked that... The problem might be GetAsyncKeyState(...)... (by coder777)
|
std::begin () |
|
[4 replies] Last: Thank you @Minnippa , @JLBorges void print(int array ) is the sam... (by closed account SECMoG1T)
|
Initialize ANY one dimensional array to zero. |
|
[2 replies] Last: I think you're being asked to provide a function that can be used to i... (by tipaye)
|
by Failbound
Problem with multiple class files, main, and pointers.
|
|
[2 replies] Last: I'm guessing you haven't included the definitions of either Initiali... (by tipaye)
|
Creating a function that swaps char array using pointers |
|
[5 replies] Last: No that's not the error line 33 char *temp; ///should be... char t... (by closed account SECMoG1T)
|
by cppn00b
Homework Help
|
|
[1 reply] : First, you have to get the definition of vector before you use it, so ... (by tipaye)
|
by martin619
Programm stops working..
|
|
[4 replies] Last: Thanks u solve my problem ;) (by martin619)
|
by BB2921
Calling a boolean from methods
|
|
[2 replies] Last: What does calcpiggyBankValue() do? Is that function hanging? (by tipaye)
|
by McCaaw
Very Simple Encode/Decode program, need help
|
|
[2 replies] Last: As far as I can see, "file" is never initialised. So your program will... (by tipaye)
|
by Greentoad55
Using 'While' Instead of Range-For
|
|
[2 replies] Last: Ah, that is my problem. Thanks for pointing that out. I missed it. (by Greentoad55)
|
by lukas123
Passing strings to Vector<string>
|
|
[3 replies] Last: If the the C++ compiler used on the server is the Microsoft compiler, ... (by JLBorges)
|
by rayb20
having trouble Implementing classes
|
|
[10 replies] Last: Okay so now it looks like this aHistogram::aHistogram() { face = ... (by rayb20)
|
by princepotato
Need some help with a function using pointers.
|
|
[1 reply] : Find the middle pos of the array, then swap array at 0 with mid, at 1 ... (by LendraDwi)
|
check true/false for end of string |
|
[2 replies] Last: Thank you very much JLBorges and sorry it took me a while to get back ... (by closed account S2wCM4Gy)
|
by CodeCmade1
Matrix from numbers
|
|
[6 replies] Last: The second one is very similar to the first algorithm I mentioned. The... (by giblit)
|
by NOD32
How would I add a character to a string?
|
|
[2 replies] Last: You can just append it to the end, like so: #include <string> #inclu... (by TwilightSpectre)
|