C++ Win32Api GUI, I Am trying to display received screenshots on server from client. I am trying to create a Remote Desktop Viewer. Client is capturin ...
C++ Win32Api GUI, I Am trying to display received screenshots on server from client. I am trying to create a Remote Desktop Viewer. Client is capturin ...
I’m using TWS API in a C++ implementation. I’m getting a bad memory allocation exception when running a market scanner. The code is designed to connec ...
I was solving a problem in leetcode. The problem was find the length of longest substring. I solved the problem and the code is running perfectly on l ...
I am writing in python and getting the error: "terminate called after throwing an instance of 'std::bad_alloc'. what(): std::bad_alloc. Aborted (core ...
I am using the Eigen library to solve a FEM problem in which I use several similar sparse matrices for the different kinds of derivatives I calculate. ...
I'm facing a problem here, I've declared a pointer to a vector. After element insertion, it shows me this error Here is my code: ...
I have written below C++ function which loops through an integer vector. With each pass it subtracts smallest number from all its numbers. It is suppo ...
I'm writing a function that handles an order input file (csv) using a while loops to iterate though it. Every two lines represents an input. I have ...
My code is an implementation of a graph in C++. I copied my code from a website, but when I try to run it on my local IDE, it is throwing an error. ...
this code show the message "terminate called after throwing an instance of 'std::bad_alloc' what(): std::bad_alloc Process returned 3 (0x3) execution ...
My apologies, I know this type of question already has an answer over here but I couldn't figure out how to use it for my code. I wrote a program for ...
I wrote a c++ program but I am getting an error. I am not understanding the reason why I am getting the error. Please help me with how to fix this. T ...
I want to manipulate a pointer to an array of structs by adding values to the array and printing them. This is the code: I'm getting this error mes ...
I'm trying to implement my own Tic-Tac-Toe game and make a tree (data structure) which contains all possible moves (for Min-Max Algorithm). At one po ...
I am using a multiparser to send http POST request and I need to send a big file (4Go). However when I test my code it give me a bad_alloc exception a ...
I'm trying to make some operations on Pointcloud but when calling VoxelDownSample function i'm getting Segmentation fault signal. I see that the prob ...
For some reason the program exits when executed while testing the handling of an exception. This is the class im using as the exception recipient t ...
In my application, I want to obtain the left singular vectors from a given data matrix with double entries, which is given in the code as Eigen::Mat ...
I am trying to read a text file with paths of wave files, and then performing FFT on them. However sometimes either i met with std::bad_alloc error, o ...
I am using the PCl library to compress lidar data. This data is then sent via the ROS network with a custom message. For this, I have a compression no ...