When are functions needed and where should they live? (1,2) |
|
[20 replies] Last: size_t is a typedef that results in the largest unsigned type the syst... (by TheIdeasMan)
|
by TomShoe
Memory problems w/ Hangman program
|
|
[4 replies] Last: Will give it a try. Thank you! (by TomShoe)
|
names alphabetical order |
|
[1 reply] : First, comment out the call to sort() at line 25. This will let you d... (by dhayden)
|
4 winner lottery |
|
[3 replies] Last: int used[ MAX_NUM] = {0}; //zero is 'false' for (int i = 0; i<4; i++... (by jonnin)
|
by ChimpCoder
Using setprecision
|
|
[6 replies] Last: Hello ChimpCoder, Over time I have found that cout << fixed << showp... (by Handy Andy)
|
Rock paper scissors 2 |
|
[3 replies] Last: variable names! if I see maxgames, I expect to play 10 rounds. if ... (by jonnin)
|
Creating a program using a vector? |
|
[3 replies] Last: More input. I took the offending for loop off and it stops on DONE no... (by jonnin)
|
by kdrewes
Find the highest and lowest value of a multidimensional array
|
|
[4 replies] Last: Ohhh ok perfect I get what you mean now. I'll make sure to apply this... (by kdrewes)
|
by theredp
Operator overloading<< to a class
|
|
[11 replies] Last: Sorry, I couldn't keep myself from playing with your code. I admit it ... (by Enoizat)
|
by FreeThinker
Tutorial on how to manipulate a text file using the ASCii value?
|
|
[2 replies] Last: define unscramble. Clearly you want an encryption / decryption progra... (by jonnin)
|
by Majeek
Exe File Marked As Virus?
|
|
[6 replies] Last: do a deep scan on the .exe file to ensure that some actual virus has n... (by jonnin)
|
by Eraun
Always goes to error
|
|
[6 replies] Last: Alright, so I put the numbDiff = rando - pNumb after the if then state... (by Eraun)
|
by BlackSmite
Creating a function that returns a list of objects of a specified type from another list of objects
|
|
[3 replies] Last: Yes; a failed dynamic cast on a pointer yields a nullptr . (by JLBorges)
|
rock paper scissors |
|
[2 replies] Last: I have written MAXNUMGames=10 before and it worked, but it stopped at ... (by closed account 4wpL6Up4)
|
by yat89
Sum up vector and insert function
|
|
[4 replies] Last: Thanks FurryGuy and lastchance for your suggestions. Most apprecia... (by yat89)
|
by MakeMeFeel
C++ Project path
|
|
[1 reply] : https://docs.microsoft.com/en-us/windows/desktop/api/winbase/nf-winbas... (by salem c)
|
by dhruv28j
Can somebody explain this code to me.
|
|
[2 replies] Last: Well you already added one debug cout statement, so add another cout... (by salem c)
|
by Rubes
Looping issue
|
|
[3 replies] Last: Quick and dirty: #include<iostream> int main() { const int row_c... (by closed account E0p9LyTq)
|
Proper way to use an external binary library in your project, using cmake |
|
[1 reply] : You're using CMake wrong. 1. add_library() doesn't link in an externa... (by helios)
|
by NKGold
Problem with robot code
|
|
[1 reply] : Compile with maximum warnings. $ g++ -Wall -Wextra foo.cpp foo.cpp: ... (by salem c)
|