Resolving shortcut paths in Code Blocks? |
|
[6 replies] Last: That also works. Thanks a lot, Texan40! (by CplusplusAcolyte)
|
Function that calls on two others |
|
[11 replies] Last: THANK YOU!!! Ok, I'll just figure out how to tell it to check for any... (by chellebell1689)
|
Manipulating Array in FileInput |
|
[1 reply] : I'd create 3 functions: void readArray(int arr , istream &is) shoul... (by dhayden)
|
??? I don't know how to say what's going on |
|
[8 replies] Last: No problem:) (by closed account 2LzbRXSz)
|
input an array with a cin statement in a for loop |
|
[1 reply] : this just spams the cout statement without allowing any inputs. You... (by shadder)
|
by semkius
Entering struct information from command line
|
|
[5 replies] Last: That's because okey is still defined as j as well. okey j; // struct... (by Texan40)
|
by tapir2
Books/websites with programming projects to learn C++?
|
|
[3 replies] Last: There is always Herb Sutter's books http://www.amazon.com/Exceptiona... (by Z e r e o)
|
by DreamTime
Measure Run Time of C++ Program
|
|
[3 replies] Last: That's the general idea, but unless your program runs for more than a ... (by AbstractionAnon)
|
by xDualBladerZ
Help with Time programming
|
|
[1 reply] : integer 1500 - integer 0130 = 1370, but time is not decimal. Think mo... (by Texan40)
|
by LadyInRed7
How to work with a DLL???
|
|
[3 replies] Last: By the way do you know how to make a dll in CodeBlocks? Create a proj... (by coder777)
|
by halfscale
Help with my array.
|
|
[6 replies] Last: @mutexe @LadyInRed7 Thank you for all the tips and articles, its help... (by halfscale)
|
by RKnighton88
Minesweeper Co-ordinates number alignment
|
|
[1 reply] : See http://www.cplusplus.com/reference/iomanip/setw/ (by keskiverto)
|
by Bogeyman
2D DMA
|
|
[14 replies] Last: Hmm... that's a lot to take in. I don't understand much of that, but ... (by Bogeyman)
|
by dasdasdas
.
|
|
[1 reply] : Hey pal,can u give the body of the header "StringContactMap.h"??? Tha... (by LadyInRed7)
|
by staciecw
Writing final program for intro programming class - switch statement wont switch (among other things)
|
|
[3 replies] Last: Morning, Only had a quick look, but i see this on line 34: string myF... (by mutexe)
|
by hmwhoknows
If statement with a char
|
|
[2 replies] Last: You can use the exit() function defined in stdlib.h . #include<iost... (by LadyInRed7)
|
by calisabeth
Switching random numbers
|
|
[2 replies] Last: morning. You can't do this: int numbers = rand() % 100 + 1; even i... (by mutexe)
|
2d char help? |
|
[3 replies] Last: @andres81 Run this code and see what it does: #include <iostream> ... (by mgoetschius)
|
inserting string into a deque |
|
[1 reply] : The value_type of deque is string. On line 14 you provide iterators ... (by coder777)
|
Function for game rules |
|
[8 replies] Last: Pet peeve: void rules(void) Do this instead: void rules() Putt... (by Disch)
|