by beesea309
invalid input
|
|
[2 replies] Last: I want the program to start again after the message prompts "Sorry, th... (by beesea309)
|
by beemo
calling a function
|
|
[6 replies] Last: am i supposed to define the string in the main function or in the seco... (by beemo)
|
by dschwart
little recursion question
|
|
[4 replies] Last: OK, that was a good suggestion and the warning is now gone. Can we loo... (by dschwart)
|
by TPL
[C++]
|
|
[2 replies] Last: So, what exactly do I need to do to make it check the last number? (by TPL)
|
<< and >> not working |
|
[4 replies] Last: Thanks for the replies! I just had to restart visual studio and then i... (by AmazingBKaiser)
|
by Student555
For loop condition statement
|
|
[3 replies] Last: Thanks for the answering the question Kevin C, makes sense now actuall... (by Student555)
|
by themohal
Vowel or consonant what if user inputs a number?
|
|
[1 reply] : Your if statement syntax is not correct. You neglected to close the q... (by JayBari)
|
by freiheit1991
How to return to int main() from other functions pressing the key ESC?
|
|
[3 replies] Last: Escape is a key with the numerical value of 27 - if I remember correct... (by Thomas1965)
|
by rtang
Function Calls
|
|
[2 replies] Last: Your code doesn't execute because you have compile errors. Line 10: ... (by AbstractionAnon)
|
by kdesai23
Make table of values
|
|
[1 reply] : F.e. use a for-loop. for (unsigned int i = 0; i <= 127; i++) { /... (by tcs)
|
by themohal
Vowel or consonant what if user inputs a number?
|
|
[4 replies] Last: i have tried this when i enter 1 it shows consonant i dont know why t... (by Thomas1965)
|
by whathecode
Binary Trees Question
|
|
[4 replies] Last: bstree is a pointer so access its value using operator->() . retu... (by tcs)
|
by PandaQuin
Functions + arrays ( maybe pointers are needed not sure )
|
|
[1 reply] : You used function printArray as an array variable! int printCol(int ... (by tcs)
|
by nanopad
Function Call Help.
|
|
[2 replies] Last: Thank you MrGoat (by nanopad)
|
by totalnooob
Print out unlimited squares from ascii char.
|
|
[1 reply] : First I would put the code to print the square in a separate function ... (by Thomas1965)
|
by sidekick123
Output screen problems
|
|
[1 reply] : Can you show us the code? (by Thomas1965)
|
by mullax
Contolling the variable changed depending on the input.
|
|
[1 reply] : I need this to happen for nine variable. How would I do this. Our ... (by closed account 48T7M4Gy)
|
by cpq2g1zw2
Accepting more than one argument
|
|
[5 replies] Last: Have it working now. Thank you all for your help :-) Now I better und... (by cpq2g1zw2)
|
by die9991
Nothing will print out.
|
|
[1 reply] : while(x = 1) Should be while(x == 1) = is an assignment operator... (by TarikNeaj)
|
by Arslan7041
Default parameter constructor with Member intialization lists?
|
|
[4 replies] Last: Because im lazy :) But thank you JLBorges for your response, which i... (by Arslan7041)
|