by cash
alternative to if statement
|
|
[2 replies] Last: thanks, I think your way works better. (by cash)
|
recursion reverse number order |
|
[6 replies] Last: Yes int PRINT_REVERSE(int n, int result=0) is exactly what I was ref... (by Ihatov)
|
by glof2
Timer problem
|
|
[1 reply] : Why don't you use the TTimer class ? http://www.functionx.com/bcb/con... (by Thomas1965)
|
Functions |
|
[7 replies] Last: <#include<iostream> using namespace std; int fun(sal) { if... (by alonso12)
|
by dissidentsc
I have homework but i miss the lesson can u help me please?
|
|
[1 reply] : Write some code then ask again. (by Ihatov)
|
this pointer |
|
[13 replies] Last: ooooooh thanks. I didnt know the meaning of tutorial so i didnt notice... (by closed account 1vf9z8AR)
|
by jokersleuth
How to find product of a row of 2D/Multidimensional array?
|
|
[3 replies] Last: your terminology is confusing. What you just described is multiply ac... (by jonnin)
|
by SKREFI
C++ ifstream <incomplete type> | Reading only the first time in for()
|
|
[1 reply] : A few comments. a) using formatted input cinF>> together with getli... (by Chervil)
|
by Jraharris89
Storing lists using char arrays
|
|
[3 replies] Last: there are plenty of library functions that manage character arrays, h... (by Jaybob66)
|
by berlioz10
It doesnt work, always say: program.exe has stopped working
|
|
[6 replies] Last: int a ; is a C style array, no management, you have to take care of ... (by Jaybob66)
|
Car comparison program |
|
[2 replies] Last: Do you want the user to enter more than one car and later compare thos... (by Enoizat)
|
by thetrek
what am I doing wrong?
|
|
[2 replies] Last: Anyway, @thetrek, if you want us to check your program, I'm afraid you... (by Enoizat)
|
by sea2017
Inventory Data
|
|
[4 replies] Last: I use GNU/Linux with vim and Makefiles but I think that in Windows mos... (by Ihatov)
|
by BtheMan
void and value returning function problem
|
|
[4 replies] Last: Prototype: void getGrossPay( int hours, double rate, double& pay ... (by lastchance)
|
by jamesnope
c++ array storing and sorting.
|
|
[1 reply] : So, do you have any questions? Your SortedArray(...) does not sort. Y... (by coder777)
|
by adkawod
Program closes before taking input.
|
|
[2 replies] Last: When using scanf , always make use of it's return value - to see that ... (by TheIdeasMan)
|
Finding common assetes in vector lists |
|
[2 replies] Last: #include <vector> #include <set> #include <iterator> #include <algori... (by JLBorges)
|
by zspar
Receive input until 2 newlines
|
|
[1 reply] : if(allwords.empty()) (by ne555)
|
A departing programmer left me a mess to deal with. |
|
[5 replies] Last: The errors I caught: 1. index in for loop needed to be unsigned Con... (by TheIdeasMan)
|
by User55009
Question about variables in loops for an assignment
|
|
[10 replies] Last: Okay, I understand more now, thank you for all of the explanations! I... (by User55009)
|