by cgm2k7
Read content from a text file
|
|
[1 reply] : Open file: ifstream file ("some_file.txt"); Get first word ("name"... (by Repeater)
|
by leomarrg
I'm trying to add the values stored in an array.
|
|
[4 replies] Last: Or that they don't pay attention to what is being said. https://www.dr... (by salem c)
|
by Cambalinho
why i can't use auto on typedef?
|
|
[17 replies] Last: Peter87 that's a good point too. thank you (by Cambalinho)
|
by terina00
Reading in imaginary numbers
|
|
[1 reply] : for c++ complex type, its simple enough: complex<double> p; cin... (by jonnin)
|
by terina00
.c_str() Error
|
|
[6 replies] Last: Thanks for the suggestions. My instructor ended up helping me; I'm pr... (by terina00)
|
by Tawwy
How To Work Out This Part
|
|
[5 replies] Last: So post what you have so far. (by salem c)
|
by Cambalinho
vectors: how create and initializate multidimensional? (1,2,3)
|
|
[42 replies] Last: i will create a new topic, because of the next question ;) thank you s... (by Cambalinho)
|
by Leo78963
Template version of merge sort
|
|
[1 reply] : First up, fix this illegal C++: int temp[high-low+1]; cin>>n; int... (by Repeater)
|
by somang317
Unintentionally, each score does not come out, but the combined score comes out.
|
|
[4 replies] Last: Thank you so much for the answer I wanted. It was simple to think of i... (by somang317)
|
by marhuum
get the type to which a pointer points
|
|
[4 replies] Last: The compiler sees the code and so do you. While type info is available... (by keskiverto)
|
Needing help with this function and -> |
|
[2 replies] Last: For some reason I thought I saw 'tree' not linked list. The above tre... (by jonnin)
|
How to combine fft and ifft function using class? |
|
[5 replies] Last: @Nurulhuda, I don't understand your code, but if you want an FFT witho... (by lastchance)
|
by JOHN2172000
C++ ELSE PROBLEM
|
|
[4 replies] Last: //... //... bool f=true ;//set flag if (choice == 1) { // Add num1... (by marhuum)
|
by marhuum
size_t is all about
|
|
[2 replies] Last: std::size_t is just a fancy way of writing and explicitly telling th... (by malibor)
|
by Ric
Help with a program
|
|
[9 replies] Last: #include <iostream> using namespace std; int main() { int a ; ... (by eyssant)
|
by Aneiron
Print out size of array
|
|
[4 replies] Last: #include <iostream> using namespace std; int main (){ int MyAr... (by eyssant)
|
by marhuum
default of function alias arg.
|
|
[1 reply] : note that in your code sample, second argument always exists, wether s... (by malibor)
|
by looookster
How to output this on a table and also output if the subject is credited or not based on the input on the program
|
|
[no replies]
|
by faltu112
Efficient way to search within unsorted array
|
|
[3 replies] Last: Set up a vector< vector<int> > bucket( 101 ); Pass once through the a... (by lastchance)
|
by pogunfunwa1
selection sorting
|
|
[4 replies] Last: Modify your main() function as below: int main() { const int size = 1... (by eyssant)
|