886 questions
There was something I didn't understand while studying SFINAEThe details have become longer, so I'll write it down in a simplified way.I think the main idea is how to call f() to make the next code co...
WM_LBUTTONDOWN, WM_MOUSEMOVE, WM_RBUTTONDOWN 등If all mouse events are handled in the same location, the coordinate values of the mouse where the event occurred are the same Only WM_MOUSEWHEEL has diff...
using namespace std;class Student_info{private:char s_name[10];int s_age = 0;char s_university[100];char s_major[100];public:Student_info();Student_info(char* name, int age, char* univ, char* major);b...
classBaseClass{ // member variable // member function};class FirstClass:public BaseClass {};classSecondClass:publicBaseClass{};classThirdClass:publicBaseClass{};void func(){ autoptr=std::make_shared&l...
https://atcoder.jp/contests/abc083/tasks/abc083_bThe output result will be 0 in the code below, but I do not know which part to correct, so I would appreciate it if you could let me know.entering20 2 ...
https://atcoder.jp/contests/abc058/tasks/abc058_bIn the code section below, environment dependent characters? will be displayed.Why do environment-dependent characters appear?I would appreciate it if ...
using namespace std;class My_string {private:char* str;public:My_string(char *a) { str = a; };~My_string() { };int my_strlen() {int b = 0;while (1) {if (str[b] == NULL){break; } b++; } return b;};vo...
I would like to get the number of elements in the array of non-static members of the class as a constant expression within the non-static member function, but using the std::size function results in a...
https://atcoder.jp/contests/abc068/tasks/abc068_bIn the excerpt code below, I would like to display the index in max, but the data stored in the array will be displayed instead of the index.How should...
Currently, I am thinking of using the FreeRTOS library to make it multi-threaded with SPRESENSE's Arduino compatible.However, when I did the verification, the following error occurred and I cannot use...
« | - 2 - | » |
862 GDB gets version error when attempting to debug with the Presense SDK (IDE)
1523 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
997 M2 Mac fails to install rbenv install 3.1.3 due to errors
1037 Uncaught (inpromise) Error on Electron: An object could not be cloned
© 2025 OneMinuteCode. All rights reserved.