by armando2
Beginner C++
|
|
[10 replies] Last: http://www.learncpp.com/ It has exercises at the end of each lesson. (by RUNNER PRO AGARIO)
|
Read stdout from another console application |
|
[3 replies] Last: Start a command prompt and type dir \windows | more This will execut... (by dhayden)
|
by curseofcj
inputting into a 2d char array
|
|
[5 replies] Last: I suggest you stop using C-strings and stick with std::string: std::... (by jlb)
|
by nenko182
Vector to vector without repeating elements
|
|
[7 replies] Last: Sorry, I assumed that your source vector has no duplicates. (by Duthomhas)
|
by Skorchy
Printing symbols using a for loop
|
|
[4 replies] Last: That's exactly what I needed. I ended up figuring it out on my own, bu... (by Skorchy)
|
by Pdsnowden
calling a class function in main but it's declared in it's own cpp
|
|
[1 reply] : setFirstName(temp); You need an object to call the function., like:... (by Thomas1965)
|
What is the purpose of the auto keyword? |
|
[2 replies] Last: Great Article, Thanks Cire! (by RUNNER PRO AGARIO)
|
by Anybus
Question about strings!
|
|
[3 replies] Last: #include <string> #include <vector> #include <iterator> #include <sst... (by DeathLeap)
|
by DeathLeap
Vector of string to Vector of Char
|
|
[5 replies] Last: Here's another way to do it. #include <iostream> #include <numeric> ... (by cire)
|
by newUser3940
Difference between two programs
|
|
[2 replies] Last: Thanks, now it has been corrected. One other comment, an error in my ... (by newUser3940)
|
by ZahoorKhan
Problem in Switch-Statement.
|
|
[4 replies] Last: Thanks #TarikNaej and #dhayden (by ZahoorKhan)
|
by Boneman
How do I let variables change based upon a string entry?
|
|
[7 replies] Last: Would be cool to see next projects like this from you! And keep learni... (by etrusks)
|
by etrusks
Visitors - are they even useful?
|
|
[14 replies] Last: n other words, try to push the interface functions as high up the tre... (by cire)
|
by verzhen1
conversion code error
|
|
[2 replies] Last: Ah okay. I understand. Thank you very much for your advice. (by verzhen1)
|
by PSYCHAMERON
What if * and ++ are applied on a pointer at the same time?
|
|
[4 replies] Last: #include <iostream> struct pointer { pointer( int* p ) : ptr(p) ... (by JLBorges)
|
by DeathLeap
reading strings and ignoring symbols
|
|
[5 replies] Last: isalpha is a function returns true if the character is alphabetic (a, ... (by PSYCHAMERON)
|
by Bajista19
wrong input handling
|
|
[2 replies] Last: #include <iostream> using std::cout; using std::cin; int main() { ... (by integralfx)
|
prime number |
|
[3 replies] Last: Oh yeah, because it's an if else statement, so the for loop never exec... (by pnoid)
|
by skadush
OffsetOf getting wrong value
|
|
[1 reply] : OffsetOf getting wrong value Any time you find yourself saying somet... (by cire)
|
by vyneroon
c++ * / decimal issues
|
|
[2 replies] Last: Thanks a lot! I thought what i was doing was taking X and then stating... (by vyneroon)
|