by oliveryasuna
Array typecast operator overloading.
|
|
[4 replies] Last: Do you mean something like this? #include <iostream> #include <array... (by dutch)
|
by oceanSpray
Validating user input twice
|
|
[2 replies] Last: One of the points in having setters is that they do any required valid... (by seeplus)
|
array and iterators |
|
[12 replies] Last: @thomas1965 & coder777, Thanks. I didn't think about iterator arith... (by AbstractionAnon)
|
by cgcoleman168
Encrypting A File Into An Output File
|
|
[3 replies] Last: you can do it in about 10-15 lines... read file stuff <random> -- seed... (by jonnin)
|
Number of Primes in Range (1,2) |
|
[25 replies] Last: I think gcc is closer to the actual compiler. You can use any of g++, ... (by lastchance)
|
constructors and assignment operators |
|
[2 replies] Last: X& operator=(X&& other) { cout << "move assignment\n"; data = ot... (by seeplus)
|
by thmm
Generating make files
|
|
[5 replies] Last: I don't know anybody who likes to set up Makefiles. If you find a too... (by doug4)
|
Iterative Loops And Small Problems #1-3 (1,2,3) |
|
[44 replies] Last: If you look back at the original assignment in the first post, there w... (by doug4)
|
by Jeff Viray
Simple charade game
|
|
[no replies]
|
by mnm71
How to access function that use another class?
|
|
[8 replies] Last: @keskiverto thank you my problem resolve with your solution And than... (by mnm71)
|
by adam2016
Ground symbol (code by Charles Petzold)
|
|
[7 replies] Last: When you find a common part of a circuit, you can remove the wires an... (by mbozzi)
|
by mnm71
How use JSON template in string ?
|
|
[2 replies] Last: @helios thank you for replying to my question (by mnm71)
|
by SirEnder125
Where to ask C# questions?
|
|
[6 replies] Last: Thanks for answering. :D (by SirEnder125)
|
by oceanSpray
Swapping array elements using pointer addressing
|
|
[3 replies] Last: I ended up using two constant variables, one to let the for loop know ... (by oceanSpray)
|
by alexas
random generator in the constructor
|
|
[19 replies] Last: To sump up, after learning about more about the topic, it seems that m... (by alexas)
|
by lambam
Stuck on Office Project
|
|
[7 replies] Last: 1. Don't put semi-colons after your if statement. 2. ((salesamounts >... (by Ganado)
|
Why const reference string |
|
[4 replies] Last: The const reference is special. The compiler is free to generate a tem... (by coder777)
|
by eagerissac
C++ - incrementing integer variable does not work
|
|
[1 reply] : Also posted here http://www.cplusplus.com/forum/beginner/273440/ (by seeplus)
|
by SirEnder125
How to clear console without system("cls") (1,2)
|
|
[26 replies] Last: See my previous post. VT100 code support was introduced into Windows 1... (by seeplus)
|
by Jraysonn
How do I modify my code to organize objects and write them to a file.
|
|
[5 replies] Last: Simply, the spec for operator<< (and operator>>) requires the stream t... (by seeplus)
|