by rohithanaydy
Doubts in Class & function
|
|
[16 replies] Last: The example by seeplus did just that. Here is another: std::vector<i... (by keskiverto)
|
by vboro
Memory game pair generating?
|
|
[8 replies] Last: Thanks everyone for the answers, I got the solution :D And @whitenite1... (by vboro)
|
by Fayezilla
Dice roll function
|
|
[4 replies] Last: how would I go about writing a "dice roll" function for a 5 sided dic... (by deleted account xyzzy)
|
by LilMissy
Thread (sleep) one second then calls the method to update it by a second
|
|
[5 replies] Last: That's not how it would usually be coded. Use mod and int division T... (by zapshe)
|
by itsrj1991
Help with program
|
|
[3 replies] Last: #include <iostream> #include <cstdlib> #include <ctime> int generat... (by seeplus)
|
by bergjensen33
When to line break when printing a one dimensional array as a multidimensional one?
|
|
[7 replies] Last: Look at the size of the declared char array, a maximum of 64 character... (by deleted account xyzzy)
|
by MrASR
How to fetch text between 2 texts or end of text with regex ?
|
|
[1 reply] : Something like: std::regex rgx("liripsum +(\\w+)(?: +sapsum|$)"... (by dutch)
|
by Lacy9265
Heap Priority Queue for to-do list (1,2)
|
|
[30 replies] Last: Got to to run. Thanks for your help @seeplus I really appreciate it. (by Lacy9265)
|
Online C++ Simulator |
|
[5 replies] Last: cpp.sh looks fine. No. It only supports upto C++14 - nor the lates... (by seeplus)
|
by MrASR
How to use substr but use variable in c++
|
|
[3 replies] Last: You should start the search for ok after the position of is in case ok... (by seeplus)
|
by DonnaPin
lower bound
|
|
[2 replies] Last: Look at what std::vector::end() means: It is PAST the last element ... (by deleted account xyzzy)
|
by silvajohn529
I cannot move onto the next line in the file
|
|
[2 replies] Last: Every time you go to read data into your properties variable, you're o... (by zapshe)
|
by Azukira
Setting true or false by user
|
|
[2 replies] Last: If you want the user to type "true" or "false" you can use the I/O man... (by mbozzi)
|
by Dracovich
How will i add this in?
|
|
[3 replies] Last: > Any fix to that? Yeah, it's something you need to write. It's li... (by salem c)
|
printing a linked list |
|
[1 reply] : the second loop will dereference a null pointer if the list is empty, ... (by jonnin)
|
by nad1212
hi, i need help with my coding because the calculation of the cgpa doesnt appear :(
|
|
[2 replies] Last: For a slightly different take on this using an array for the subject n... (by seeplus)
|
by Shervan360
Stop after catch in C++
|
|
[4 replies] Last: The use of exit() here isn't the best as that's an unexpected side-e... (by kbw)
|
by anonomyss
Need help
|
|
[7 replies] Last: There are two errors in the main() function. Name the errors and expl... (by keskiverto)
|
Want help , been struggling with this :( |
|
[3 replies] Last: please bare with me Hold yer horses, buddy! This is not that kind of... (by dutch)
|
by anonomyss
Overloading + , - and * operators (long)
|
|
[2 replies] Last: The operator = * - don't need to be friend functions. They can be just... (by seeplus)
|