Consider the following simple (to the extent that template questions ever are) example: #include <iostream> template <typename T> struct identity;
int size(Node* root){ if (root == nullptr) { return 0; } return size(root->left) + 1 + size(root->right); } bool isBST(Node* node
In my simple app which I build with cmake I use opencv, which is installed with vcpkg. On CMakeLists.txt I have to find_package(OpenCV REQUIRED), replacing Open
I have been searching for an answer for a while and couldn't find anything that worked. Here is some background: I am trying to build an electron app that can u
How to create custom tensor value with shape (b,n,m) I see the cppflow::fill method but it allows inserting 1 value which fills the whole same value in the shap
I am trying to dynamically load printf from ucrtbase.dll, but GetProcAddress is returning NULL. Other functions like malloc and puts work, but not printf. int m
I have this project where we have to convert a made up simple coding language given through a txt into a c++ language and currently I am having a problem with c
I got this code from notes about file handling. From what I understand about this code, I want to get characters till x is reached in the file using this code.
The GNU MP manual specifies the declaration of the function get_mpz_t: Function: mpz_t mpz_class::get_mpz_t () So I was expecting a mpz_t return type. But runn
This is the code for a ground object that gets rendered every frame in a game I'm making with c++ and openGl. Ground::Ground() { this->loadedObject = loa
I am trying to record the screen on macos, with ffmpeg. I would like to be able to select a section of the screen instead of the whole desktop. I tried to set s
As we can invoke the explicit cast operator, using static_cast, a C-style cast, or a constructor style cast. I am confusing how exactly the operator interpret t
I have a dev board (imx rt 1024) from nxp, which I write software for using MCUxpresso (nxp's IDE). For my project, I am asked to introduce position independent
I have a C++ program that waits for some text input with getline(), and it works well from the command line. However, I would like to call it from Python - send
I'm using time_point the first time. I want to parse datetime from string and found a difference when returning back to string from 1 hour. std::chrono::system_
I'm trying to create a linked list that has 2 data types and a function that inserts nodes. But in order to insert nodes, I have to create at least 1 empty node
hi I was writing a code where near the vectors it returns true if they are placed in ascending order otherwise false, when I try to start the
I am trying to understand how to send SOAP requests with JSON formatted data to docusign. Following this guide is only for pdfs: https://developers.docusign.com
I attempted to make my own mystrcpy() function, which takes the same arguments as the standard function. It is not responding. The array does not get copied. si
I came across this where one of the user comment says: A constructor cannot be called, it is not a function. It is invoked automatically when a new object is c