Skip to main content
Filter by
Sorted by
Tagged with
0 votes
2 answers
62 views

So the question given to me is to make a C++ program where the user inputs the size (declared by n) of a matrix N x N, and then there's a function for the user to fill the matrix called inputMatrix #...
Dustin Ivander's user avatar
0 votes
0 answers
40 views

I'm attempting to narrow a screenshot of an app to a specific section of the UI for later processing by Tesseract; in particular, the X Battle ratings located in the lower half of the image. I did a ...
SystemNeo's user avatar
-1 votes
0 answers
59 views

According to modern C++ guidelines, we should prefer uniform initialization everywhere, for example: int x{0}; However, when I try to combine uniform initialization with C++20’s designated ...
rafoo's user avatar
  • 1,656
3 votes
2 answers
102 views

I'm writing a header-only library which defines class X in header x.hpp. The implementation of X is different for different standard versions: #if __cplusplus < 201703 class X { int a; ...
yuri kilochek's user avatar