by bydrachen
Questions about C++ strings...
|
|
[6 replies] Last: Really thank you, guys. I learned that c++ header files are not having... (by bydrachen)
|
Matching one part of a struct with another |
|
[3 replies] Last: that aside, this is a major POINT of structs/objects, is the ability t... (by jonnin)
|
by Ceddy D
Is it better to declare global variable or declare variable multiple times?
|
|
[4 replies] Last: Objects offer a way to control globals and limit access if you must us... (by jonnin)
|
by Paul5
C++ program to sort even nums in descending order then odd nums in same order using one array and without built in functions
|
|
[19 replies] Last: [quote=Paul5]So the time complexity of the program you mentioned above... (by lastchance)
|
by HellocMonkey
String Manipulation
|
|
[6 replies] Last: im using dev c++ version 5.11 update: i think i got it figured out no... (by HellocMonkey)
|
using cin with structs |
|
[3 replies] Last: you can overload the << and >> operators for cin and cout making them ... (by jonnin)
|
by Squabs
Writing Functions for Number guessing game
|
|
[8 replies] Last: Using C++ random - rather than C rand()/srand(), then: #include <ra... (by seeplus)
|
by loopmonster
Min and Max Value in Array
|
|
[3 replies] Last: This program can be simplified. #include <iostream> #include <fst... (by seeplus)
|
by Pen72
No output
|
|
[4 replies] Last: Using the iterator on line 45 is illegal due to the erase on line 44. ... (by coder777)
|
Why is system() hated so much? |
|
[5 replies] Last: To help explain @kigar64451's comment, the black terminal screen you s... (by mbozzi)
|
by Pen72
Using Multiset
|
|
[3 replies] Last: [new thread at http://www.cplusplus.com/forum/beginner/282916/ ] (by seeplus)
|
by Adalaide
Nesting Loops Explaination?
|
|
[1 reply] : Nested loops are often used with 2 dimension arrays such as your theat... (by AbstractionAnon)
|
by worldd
Dominos problem
|
|
[6 replies] Last: heh.. adding tiles to the start is changing the starting point, though... (by jonnin)
|
by Pen72
Sum of numbers
|
|
[2 replies] Last: #include <iostream> #include <vector> #include <set> #include <algori... (by lastchance)
|
by jzilliam
Reading numbers from a file into an Array/Vector
|
|
[4 replies] Last: #include <iostream> #include <fstream> #include <string> #include <v... (by seeplus)
|
by Pen72
Improve time efficiency
|
|
[5 replies] Last: Adding a condition is tiny, agreed. I would think that skipping the l... (by jonnin)
|
by Happilicious
Solving data alignment issue
|
|
[4 replies] Last: You are right jonnin. I used memmove at the end and it works well for ... (by Happilicious)
|
by Pen72
Coach problem (1,2)
|
|
[20 replies] Last: oh yes, there's no warning message, I'll try using the debugger, thank... (by Pen72)
|
by Adalaide
Help with password requirements code.
|
|
[3 replies] Last: Valid - if input < 6 digits and inputLength <= 8 ?? Seems a queer vali... (by seeplus)
|
by jaffe15
Do .tcc/.tpp files need headerguards?
|
|
[1 reply] : That's right. You only need to use header guards for the header files. (by Peter87)
|