by hoobahstank
Why wont my read file open?
|
|
[1 reply] : Nevermind sorry how can i delete this post (by hoobahstank)
|
by geo28t
Logic error?
|
|
[7 replies] Last: One obvious thing is that he clearly knows the STL. Better than wander... (by Thomas1965)
|
by unoino
Saving a char array into a char pointer for print function
|
|
[5 replies] Last: Fair enough. I would ask what that conversion really looks like in ... (by jonnin)
|
by anoanomous
HELP with Writing c++ statements to find a positive value that is divisible by both 11 and 12. (using while loop)
|
|
[3 replies] Last: then there is no sensible place for a while loop. You just check 11 &... (by jonnin)
|
by racercat
Using find in a vector of strings to find only part of the string
|
|
[no replies]
|
by ElleJay
Pointers and memory locations
|
|
[3 replies] Last: a good and fair question! first, modern c++ greatly reduces the need f... (by jonnin)
|
by bridgetf
2d array with random numbers program
|
|
[1 reply] : To give you an idea. #include <iostream> #include <random> int rand... (by chicofeo)
|
by beginner1127
add 2 string number in c++
|
|
[9 replies] Last: > const int a, const int b, and also const int hsum. why do you put co... (by JLBorges)
|
by Dr4g
Printing an output after a variable input.
|
|
[2 replies] Last: I wanted to print the second statement right after entering a variable... (by Dr4g)
|
by Baluv3
Converting C filestream to C++
|
|
[6 replies] Last: Can you do the same for other functions which has the reading from fil... (by Baluv3)
|
by beginner1127
hex to dec in string
|
|
[3 replies] Last: c++ can convert string hex to int for you, if you didnt know that. Th... (by jonnin)
|
by arielga96
Structure and vector help pls!
|
|
[3 replies] Last: Change auto point #include <iostream> #include <vector> #include <s... (by arielga96)
|
by tdleanz
asking for input after computation
|
|
[1 reply] : If you don't want to enter "s" just remove the entire loop on line 80. (by coder777)
|
by boypetey17
Need help with my C++ program please.
|
|
[2 replies] Last: Thanks for the reply and help. The N part was driving me crazy. I will... (by boypetey17)
|
by drew026
Inheritance - out of scope error
|
|
[1 reply] : Hi, Try this: #include <iostream> class Shape { public: virtual ... (by TheIdeasMan)
|
by RandyAcc007
Create An Adjancy List from Txt File
|
|
[1 reply] : Something like this, perhaps: #include <vector> #include <map> #incl... (by JLBorges)
|
by logana
Problem with this code for an example of a Class.
|
|
[2 replies] Last: Sorted, all I needed to do was go into Project, options> and click C++... (by logana)
|
by matapexxxX
Recursive Binary Search
|
|
[2 replies] Last: So I channged to this #include <iostream> using namespace std; int... (by matapexxxX)
|
by yepicubef
Question ?
|
|
[2 replies] Last: Thanks (by yepicubef)
|
by awong918
How to add in commas to output after reading a number from a file?
|
|
[2 replies] Last: I'm assuming it's ok to use the Standard Library for this(since the as... (by awong918)
|