Trouble with bubble sort and pointers |
|
[6 replies] Last: however, that's not bubble sort. for (j = i + 1; j <= end; j++) {... (by ne555)
|
by CapitalJeep
Why does this loop? (probably stupid simple--but I cant think it through)
|
|
[2 replies] Last: Andy, Thank you! Sometimes I just have to shake my head at myself (... (by CapitalJeep)
|
by Mehari belay
linked lists
|
|
[2 replies] Last: You might find Section 3 of this to be useful too: https://www3.ntu.ed... (by closed account 48T7M4Gy)
|
by zeviah5
3x3 complex matrix (1,2)
|
|
[33 replies] Last: @zeviah5 The methods I used are for dense matrices. If you have matri... (by lastchance)
|
by Icyblizz
Exercise Explication
|
|
[2 replies] Last: Thank you for making the definition of interface in C++ clear to me.... (by Icyblizz)
|
by sezo
need help with output on assignment
|
|
[9 replies] Last: @sezo I had to add a little more to your program, but it works now. ... (by whitenite1)
|
Help make this better! |
|
[2 replies] Last: also did you mean move main to the top of the program? yes, you can do... (by jonnin)
|
by bluefrog
vector size() argument ?
|
|
[4 replies] Last: got it working i understand the theory of templates, but struggle wit... (by bluefrog)
|
Question about classes with other classes as member data. |
|
[8 replies] Last: Ah I see, I think understand these setter functions now. I think this ... (by CameronStevenson)
|
by MulStudent
URGENT ! Need help with my assignment. need to pass up in 8 hours pls pls help
|
|
[19 replies] Last: Wait. This is C++ program rather than C. also it uses c++11 features. ... (by codehelper)
|
by boere1337
variable vector sequence
|
|
[2 replies] Last: std::cin >> iterations std::vector <int> sequence(iterations); ... (by ne555)
|
by Kappa
Calling a value from a class to a different class
|
|
[2 replies] Last: Forgot to reply.. thanks keskiverto!! i actually got it! (by Kappa)
|
by MrMou6
double variable
|
|
[2 replies] Last: side note but money is often an integer and often 1 is the smallest cu... (by jonnin)
|
by von1997
Attempt at bubble sorting
|
|
[2 replies] Last: How many times do you increment j between lines 17 and 20? (by lastchance)
|
Generating and Sorting numbers. |
|
[10 replies] Last: Sometimes, you just want some numbers, and that is all you need. ht... (by closed account 48T7M4Gy)
|
by GSid
isdigit in a simple for loop
|
|
[7 replies] Last: This do you? The previous one is simpler. #include <iostream> #includ... (by lastchance)
|
Question about Exception. |
|
[2 replies] Last: > Am i doing something wrong? Yes; using exceptions for control flow.... (by JLBorges)
|
help me...i'm beginner |
|
[2 replies] Last: i got it now...appreciate that....good man :) (by phongvants123)
|
by Bronislaw
Reading txt file into 3d vector
|
|
[3 replies] Last: another approach might be to: (a) read file line-by-line into std::str... (by gunnerfunner)
|
by MrMongoose
I need to write a Program for My Programming class but I am stuck
|
|
[3 replies] Last: My professor wants us to only use ints or floats in this project as t... (by mbozzi)
|