by fsonnichsen
Placing Functions inside class vs outside
|
|
[6 replies] Last: OK and thank you for all the deliberation. As expected there are "fine... (by fsonnichsen)
|
by Zhylian
looping function
|
|
[4 replies] Last: Ok, so you can have a struct which represents the data, but you won't ... (by TheIdeasMan)
|
by persades
Functions
|
|
[10 replies] Last: For the others, consider: #include <algorithm> #include <iterator> ... (by seeplus)
|
by ppkaa
Access Violation Writing Array Reading .txt
|
|
[3 replies] Last: Dear Jonnin and TheIdeasMan, Thank you for the advise. I will reproce... (by ppkaa)
|
by emgenerix
If/Else coupon problem
|
|
[1 reply] : In function 'int main()': 78:2: error: expected '}' before 'else' 33:... (by TheIdeasMan)
|
by Amr Saleh
Arrays
|
|
[3 replies] Last: In your second loop, during the process you are trying to display the ... (by Geckoo)
|
by gigacapybara
Homework fill in blank question to figure out output
|
|
[3 replies] Last: 4) cin of an int is weird. its going to read the whole thing and cons... (by jonnin)
|
by Hollowman
Vector version of pointer pointer array
|
|
[3 replies] Last: I generally prefer to keep everything 1d as much as possible for a var... (by jonnin)
|
by LeoV3
How does program know array size? (1,2)
|
|
[24 replies] Last: I really do like using std::array over using a plain array more than ... (by seeplus)
|
by gigacapybara
Loops to make 3 tables of Celsius, Fahrenheit and Kelvin
|
|
[7 replies] Last: @againtry Nevermind I got it to work, thanks for the help! (by gigacapybara)
|
by gigacapybara
Convert 12 hours to 24 hours
|
|
[8 replies] Last: #include <iostream> #include <string> #include <iomanip> /* 5:30:00... (by againtry)
|
by DonnaPin
binary search tree confusion
|
|
[5 replies] Last: yea this looks like older code, C++ converted over from C. Maybe on p... (by jonnin)
|
by mick777
how can i prent the array after evry pass in bubble sort
|
|
[8 replies] Last: Or even as C++20: #include <algorithm> #include <iostream> #include... (by seeplus)
|
by alexas
rotation of the cuboid chain (1,2)
|
|
[37 replies] Last: Just simple Thanks just does not sound seriously, I was totally lost i... (by alexas)
|
by Silver29
Why does my code on C++ skip the getline on line 30?
|
|
[3 replies] Last: Hello Silver29, If you are still interested and catch this. Some sugg... (by Handy Andy)
|
by derpus
How do I check what specific char has been outputted to a specific xy position in the console?
|
|
[9 replies] Last: The Windows console is based upon a resizeable 2-d buffer and a window... (by seeplus)
|
by gigacapybara
How to count uppercase and lowercase strings
|
|
[5 replies] Last: For some versions of some compilers (gcc?? - VS was OK), you had to wr... (by seeplus)
|
by AkiraC
How to print out sum for every loop?
|
|
[6 replies] Last: Hello AkiraC, I finally figured out the problem I was having. In the... (by Handy Andy)
|