by farmsmaqs
Test Question gone wrong
|
|
[6 replies] Last: Thanks for the replies everyone, he hasn't responded to my e-mail yet.... (by farmsmaqs)
|
by DonnaPin
C/C++ hackerrank question
|
|
[3 replies] Last: This may help: https://www.cplusplus.com/reference/cstdio/scanf/?kw=sc... (by JRManx)
|
by NMI21
search function fstream
|
|
[5 replies] Last: So the program searches for a word in the text. all lines with the wo... (by seeplus)
|
by hitasa
Need a lil advice from more experienced ones
|
|
[5 replies] Last: Is this something like what you want: #include <string> #include <m... (by seeplus)
|
by juicypwner
How would I identify the stack and heap in int main?
|
|
[6 replies] Last: For MS VS, the small buffer is 15 bytes. #include <string> #include... (by seeplus)
|
by johnOk9
Compiler cannot find iostream
|
|
[6 replies] Last: Good day, I did post here again, but it seems to have disappeared. I... (by johnOk9)
|
by Brewsdog
Filtering Words using ifstream/ofstream
|
|
[14 replies] Last: As case insensitive: #include <string> #include <iostream> #include... (by seeplus)
|
by theguyy
complete the code plz
|
|
[2 replies] Last: Based upon expected output and incorrect given code, perhaps: #incl... (by seeplus)
|
Writing a Rock-Paper-Scissors game using different functions. |
|
[4 replies] Last: Thank you all for the tips! The code's working now by the way! (after ... (by gfriend owemji)
|
deleted |
|
[5 replies] Last: The OP removed the content of the original posts (making them pointles... (by closed account z05DSL3A)
|
by zavkk
Delete data from a file
|
|
[1 reply] : What kind of file is it? A text file? Very rigid binary file? In gene... (by Ganado)
|
by NMI21
Read out what somebody wrote in cmd! (1,2)
|
|
[20 replies] Last: Disclaimer: I've never used <filesystem> You don't need to for this ... (by Ganado)
|
by Brewsdog
Count how many times a banned word has occured from a text file
|
|
[5 replies] Last: //Step 2 //Do a comparison between the words from "search1.txt" and ... (by lastchance)
|
by zavkk
Main function type
|
|
[4 replies] Last: If the program is used within something like a batch/script file, then... (by seeplus)
|
by Battlecode06
How to fix the errors with my class functions
|
|
[17 replies] Last: Based upon previous code, perhaps something like this. Obviously there... (by seeplus)
|
by rozick1
Correct approach for non-blocking user input
|
|
[1 reply] : when you reach cin >> num; line, the current thread execution will s... (by ne555)
|
by vittorioc98
Having issues with generic Insertion Sort implementation
|
|
[10 replies] Last: I think the point is to make InsertionSort() generic so it will work... (by dhayden)
|
Stroustrup - Programming: Principles and Practice Using C++ - std_lib_facilities.h Works With IDE but Not gcc |
|
[9 replies] Last: I'm not saying the header is bad , per se; I'm saying to use it with ... (by JRManx)
|
by Growthra
Little help understanding function
|
|
[2 replies] Last: Modified to use modern C++ for generating random numbers and container... (by deleted account xyzzy)
|
by tuesday0
Trying additional moves in the Knight's Tour problem
|
|
[7 replies] Last: move = (move + 1) % N; // keeps move in range [0, N - 1] I haven... (by doug4)
|