by TheToaster
Errors when explicitly deleting move assignment operators
|
|
[5 replies] Last: @TheToaster, despite the name "std::move", the function doesn't perfor... (by Niccolo)
|
by highwayman
Binary shift is "too big" but isn’t
|
|
[7 replies] Last: Note that numeric_limits<>::digits is the number of non-sign bits in a... (by dhayden)
|
by coderking
is there any java part of this forum??????
|
|
[1 reply] : No. This is a C++ (and sometimes C) forum pretty exclusively. -Albatr... (by Albatross)
|
by blackj0221
Question about r-value reference with function call
|
|
[2 replies] Last: > every functions' return value is treated as r-value. Is it correct? ... (by JLBorges)
|
by Ch1156
Pointers vs references for class objects (1,2,3,4)
|
|
[62 replies] Last: I was just wondering if that was the best way to do it, it seems like ... (by Ch1156)
|
by congomite
help with search
|
|
[2 replies] Last: #include <vector> #include <algorithm> #include <iostream> using name... (by anup30)
|
by higuainlota2
string and file
|
|
[6 replies] Last: LearnCpp's tutorial page on std::stringstream : https://www.learncpp... (by deleted account xyzzy)
|
by RicoJ
Making my own iterator: how to convert a non-const iterator to a const-iterator?
|
|
[1 reply] : > I want to squish const iterator and non-const iterator in one class... (by JLBorges)
|
Shuffle Algorithm for my Poker application |
|
[12 replies] Last: It sucks being a noob at c++. Some of us still are. Self-taught and... (by deleted account xyzzy)
|
vector of unique_ptr |
|
[3 replies] Last: Also a quick tip. When making a unique_ptr, you can also use the std::... (by KishoreG)
|
Tic Tac Toe AI |
|
[4 replies] Last: You have a lot of code that is nearly identical. That's always a good ... (by dhayden)
|
by satishrao
Debugging in Visual C++
|
|
[5 replies] Last: Debug code is often a hefty multiplier slower than release code so d... (by Repeater)
|
by vucuong2005
Rectangle Sum with array2D
|
|
[5 replies] Last: Pardon me for piling on here, but I'm going to expand on @jonnin's and... (by Niccolo)
|
Program Is Outputting Data as an int not double? |
|
[5 replies] Last: Here are some examples of output: Input the balance of money you woul... (by PiggiesGoSqueal)
|
by Xanadu4ever
This has been asked before by others....
|
|
[19 replies] Last: "Problem Solved." Then please tick the box so the thread is green che... (by deleted account xyzzy)
|
Digit Extraction |
|
[11 replies] Last: Thank you Sir, @lastchance, i finally submitted to my teacher. (by philipmorries3)
|
by paracosmadd
If/Then Statement Issues?
|
|
[6 replies] Last: Do not listen to spam poster, its random text. (by jonnin)
|
by KishoreG
Why does this code not need a move-ctor?
|
|
[1 reply] : the move-constructor does what the author wants (move the vector) the ... (by ne555)
|
by Ryan15
Counting vowels and storing non-vowels into array
|
|
[2 replies] Last: Here is an implementation using a different function with C++17, just ... (by KishoreG)
|
by zeplika
First letter in string output not showing
|
|
[5 replies] Last: Thank you so much Andy, yes putting cin.ignore() after cin>>bookprice ... (by zeplika)
|