by Tarkan1857
Rotational Movement with Rectangles
|
|
[2 replies] Last: Thank you helios, this helped a lot. (by Tarkan1857)
|
by marty1123
program to count how many numbers between 1 and 10000 are divisible by 3
|
|
[5 replies] Last: A little algebra, I guess what Duoas was thinking: int count = 100... (by TheIdeasMan)
|
by rabster
Thread pool questions and advice.
|
|
[4 replies] Last: It's somewhat like a turnstile with unbounded job queue.. except tur... (by rabster)
|
by c00012
Using for-loop to Implement deletion in Array-based List
|
|
[1 reply] : just an idea: if you delete an item within a loop for (int i = 0; i... (by closed account 48bpfSEw)
|
by ephraimr
In what ways are C++ better than swift, python etc.
|
|
[1 reply] : I think this is a wrong question in a wrong forum? ^^ There is nothin... (by closed account 48bpfSEw)
|
by marty1123
prime number code
|
|
[7 replies] Last: There is something wrong with the code. For N = 10 it puts this out: ... (by closed account 48bpfSEw)
|
by Andrewcen16
Vector search/ sort help
|
|
[1 reply] : 1. Implement bool contains(vector<int> v, int i) , which returns true... (by helios)
|
by caldaba
CS string and string class
|
|
[no replies]
|
by marty1123
leap year code with for loop
|
|
[1 reply] : #include <iostream> int main() { for (int i=0; i<1; ++i) { std::... (by cire)
|
by fkhs1990
Array.sort w/ a timer
|
|
[1 reply] : ...that uses array.sort Are you supposed to use .NET for this task?... (by Thomas1965)
|
Why is my code displaying random lines? |
|
[6 replies] Last: You're welcome, Thomas. CppCheck is one of the tools that I never want... (by closed account 48bpfSEw)
|
by iJohnny
Parking fee prompt doesnt make much sense
|
|
[1 reply] : code incomple: double calcFee(int hours) { // If the car is ther... (by closed account 48bpfSEw)
|
Using push_back() with vector causing segmentation fault |
|
[10 replies] Last: Removing max_size() fixed my problem! Thank you so much, Helios!... (by closed account L1bXjE8b)
|
by technologist
not seeing the error
|
|
[5 replies] Last: Thank you very helpful. I was going crazy with the ' vs. " (by technologist)
|
Editing data |
|
[4 replies] Last: nevermind after posting i saw my mistake... thank you again(: (by FranciscoDiaz)
|
by berfomet96
How to make two frames work together in c++ (using visual studio 2013)
|
|
[3 replies] Last: If you call MyForm1 from mainFrame it will automatically return to mai... (by Thomas1965)
|
by khawar85
Resume the tasks with C++ based code
|
|
[1 reply] : A possible solution would be to catch the WM_ENDSESSION message and st... (by closed account 48bpfSEw)
|
by A nonim
Matrix
|
|
[1 reply] : Break down your problem in little problems. 1. you need a place for y... (by closed account 48bpfSEw)
|
by gedamial
Passing pointer to pointer to a function (value/reference)
|
|
[18 replies] Last: Much like int** is a pointer-to-pointer-to-int a int*&& is an (rva... (by cire)
|
by DTM256
Advance Keyboard & ASCII controls
|
|
[2 replies] Last: Yes, Therefore, instead of the outdated getche(), use the _getch(). ... (by DTM256)
|