My client has an ASP.NET application installed on two production servers (balanced with NLB, but that's irrelevant). Both servers crash every 3-4 hours with the following event viewer logged error: > Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: > 0x4ce7afa2 > Faulting module name: clr.dll, version: 4.0.30319.18034, time stamp: [...] read more
I have an ASP.Net Web API application deployed via IIS. It is in Windows Authentication enable mode only because I want to detect Windows users who access the APIs. For a few days the application will work fine but occasionally it will fail. When the application fails it will present [...] read more
I have an MVC 3 website using entity framework and it has just recently started crashing on a specific action. I wish I had more information, but all I can pull from the Windows event viewer is this: Faulting application name: w3wp.exe, version: 7.5.7601.17514, time stamp: 0x4ce7a5f8 Faulting module name: [...] read more
Recently i received the error log below in my windows Server 2012. Some consequences like web site down happens and a 503 error are launching in the browser. I caught up on updates in OS and i have searching for this problems, that let me to do some options like: [...] read more
We have a legacy VB6 application that is crashing at a certain point on Windows 10, but not on Windows 7. It also doesn't crash when run via the VB6 IDE (on either OS). On trying to track down the differences I discovered that msvbvm60.dll is subtely different on Win7 [...] read more
In a windows webservere I'm trying to get a memory dump of a failing IIS 7 worker process (w3wp.exe) with no avail. In the Event Viewer I get the following. Faulting application name: w3wp.exe, version: 7.5.7600.16385, time stamp: 0x4a5bd0eb Faulting module name: clr.dll, version: 4.0.30319.1, time stamp: 0x4ba21eeb Exception code: [...] read more
I'm solving a CSES problem in which I've to find the sum of first 'n' Fibonacci numbers. The code: #pragma GCC optimize("Ofast") #include <iostream> using namespace std; int main() { unsigned long long int n; scanf("%llu", &n); unsigned long long int seq[n]; seq[0] = 0; seq[1] = 1; unsigned long [...] read more
I'm attempting to update a production server that hasn't had a Windows Update installed in almost 3 years. When I attempt to download any update, even if I select just one, the download hangs at 0% consistently. The first time I downloaded the updates (97 updates), it hung at 46% [...] read more
I have one IIS 8 server where the w3logsvc dies at midnight UTC (we're Central Time, so we're UTC -6). I have to manually start the service to get it back running again. I have the logging set to use local time for rollover, but it can't be a coincidence [...] read more
I've set up IIS6 with FastCGI to use php-cgi.exe. I have some php websites by external parties, that I'm trying to run in a test environment. One of the websites just plain gives me a FastCGI Error Page. This does not happen on every page, it just seems to happen [...] read more
This is the log I received from Dev-Cpp when I tried to compile a program: Compiler: Default compiler Building Makefile: "C:\Dev-Cpp\Makefile.win" Executing make... make.exe -f "C:\Dev-Cpp\Makefile.win" all make.exe: Interrupt/Exception caught (code = 0xc00000fd, addr = 0x4ff283) Execution terminated I have googled for the answer, I've tried the "PATH" fix, and [...] read more
My simple program source code is following and it find the (nested) parenthesis pair and repeat the string. 2(R) -> RR #include <iostream> #include <string> #include <stack> using namespace std; string repeated(string str, int n){ string repeat; for(int _=0; _<n; _++) repeat.append(str); return repeat; } string solution(string rgb, int recurdepth) [...] read more
I am at early stage of learning Python. I tried calculating Ackerman function for smaller values. It worked just fine until the values are (3,7). Any value higher than that (say 3,8) throws this error. [Process finished with exit code -1073741571 (0xC00000FD)] At first I checked whether recursion limit is [...] read more
This started a few days ago on a machine that has been running WIn 8.1 for over a month. I just finished a clean install of Windows 8.1 with a handful of apps like Dropbox and Office. Yet I'm still getting Windows Explorer crashes such as this: Faulting application name: [...] read more
I'm getting a stack overflow exception after I load 4 or 5 times a simple controller action. The web app is running on Azure and I was able to dump the exception information and the problem seems to be related to Dependency Injection. internal object GetService(Type serviceType, ServiceProviderEngineScope serviceProviderEngineScope) { [...] read more
Disclaimer: I am a C newbie. I wrote a program to generate a bunch of random numbers in a normal distribution with mean mean and standard deviation stddev. The numbers are put into an array r. The number of random numbers to generate is specified by the constant NUMRANDOMS. I [...] read more
I am attempting to read from a text file and store all the words in a 2d array but for some reason my code only works when my 2d array is declared as a global variable (which is not allowed for this project). When I put my 2d array in [...] read more
I'm trying to generate the x Fibonacci number. I made a float function and I can't find why it's not working. However, with an int function, it's working. #include <stdio.h> float fib(float x) { if (!x) return 0; else if (x == 1) return 1; else return fib(x - 2) [...] read more
My PC is running windows 10 ver 1803. I downloaded the zip containing the binary of postgres 10. When I tried to init the db with: initdb.exe -D ../data –A trust I received this error: child process was terminated by exception 0xC00000FD creating directory ../data ... ok creating subdirectories ... [...] read more
I am trying to connect to the Oracle database using the DSN in my web application and when I browse the site the app pool crashes. The DSN is set up correctly I think because when I hit Test connection it successfully connects. When I looked at the Event viewer [...] read more
I am having trouble analyzing a crashdump with windbg. I run: .sympath SRV*c:\symbols*http://msdl.microsoft.com/download/symbols .reload /f /i To get the symbols. All symbols seem to have downloaded to c:\symbols and then i run: analyze -v To analyze. But i get "WRONG_SYMBOLS" in my result (se below). I run windbg in the [...] read more
I know this question gets asked a lot but in my case it's a bit wierd. I just got a RTX 3080 and tried to install Tensorflow based on a tutorial I found on reddit. I did everything as described there: Install Anaconda --> Python 3.8 --> TF-nightly v. 2.5.0 [...] read more
I'm trying to implement a DFS algorithm in c++. I use it to answer the question: "are two vertexes connected or not?", but something went wrong. Sometimes the program gives correct answer, sometimes crashes with 0xC00000FD code. I've google it and know now, that is a StackOverflow error. Here's the [...] read more
As far as I can see, my code has no recursion, but I am getting exception 0xC00000FD. According to Rider For Unreal Engine, it is happening in the main function. It's being encountered at the decompiled code mov byte ptr [r11], 0x0 It was working fine, then suddenly when I [...] read more
We are experiencing random Azure App Service crashes, multiple times a day. Every time the application crashes the App Service is restarted. The application is an ASP.NET MVC 5 application running .NET Framework 4.7. Crash monitoring is enabled and the results of the crash dumps leads us to the following [...] read more
I'm getting a Stackoverflow exeption after updating my ASP.NET MVC Project to the latest Version of Kendo UI. Tested with R3 2020 and R2 2020, the previous Version which worked was R2 2018. I have checked the .NET and ASP.NET Version on the Server. Error Log Failure on the Server: [...] read more
My issue is that I get an exception thrown when my array size becomes too big: "Unhandled exception at 0x005B3BC7 in throw away.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x01002F68)". I need to be be able to run this code with an array/vector size n = 100000, but as of right [...] read more
Is data allocated on stack inside a function cleared when the function ends? The following code gives me an error (program terminates with 0xC00000FD exception code): void fun() { const long len = (1024 * 1024) / 4; // 1 MB int aa[len]{}; } int main() { fun(); const long [...] read more
from random import * from time import * import sys def quicksort(mylist, pivot, end): # pivot will always be the first element in the list/sub-list if (len(mylist) == end) and (pivot == 0): # shuffle the list before we start (only happens on the first call) shuffle(mylist) if (pivot == [...] read more
I have a simple API that I bumped from .Net Core 3.0 to .net Core 3.1 hosted InProcess in IIS. All packages are updated to latest version and the application works on my development machine both in release and debug. There are no configuration or server changes done beside installing [...] read more
I use Windows 10 x64 and Visual Studio 2019. Here is a simple program (x86-Debug) which should print a memory allocation size: #include <iostream> int MyAllocHook(int allocType, void* userData, std::size_t size, int blockType, long requestNumber, const unsigned char* filename, int lineNumber) { std::cout << "Alloc: " << size << std::endl; [...] read more
I am now using Boost Unit Test to perform unit test for my project. Every time I run the unit test, I got a memory stack problem. I debug into the source code of BOOST library, and I find that the problem comes from invoking the following codes in unit_test_suite.hpp [...] read more
Kernelbase.dll is being logged as the faulting module in EventViewer from multiple games (And crashing the games) when they attempt to load a multiplayer lobby. From multiple games they all log KernelBase.dll as the faulting module with the same exception code and fault offset. A couple of example games are [...] read more
We have a web application hosted on several servers of our customers. Recently on only one of them, apppool is recycled about every 15 minutes. I've checked the event viewer and there is no "Warning" level log that contains some help on any occasional exceptions. I found only some "Information" [...] read more
I'm using Python 3.7, VSCode for some geographic data processing (forest fire detection). My script is exiting in the middle of a recursive function, without any error nor traceback... This is the code that crash (I deleted every line that seemed not essential to the understanding of the function, trying [...] read more
I need to declare and initialize array with size at least 8GB (1 billion of f64 variables). Everything I've tried so far is very complicated or inefficient or gives STATUS_STACK_OVERFLOW (0xC00000FD) error because it's first being created on heap. How can I do it efficiently, clean and nice? Is there [...] read more
the framing of my CNN is like: model = Sequential() model.add(Conv1D(100, 60, activation='relu', input_shape=(20000, 1), padding='same')) model.add(MaxPooling1D(4)) model.add(Conv1D(50, 4, activation='relu', input_shape=(20000, 1), padding='same')) model.add(MaxPooling1D(2)) model.add(Flatten()) model.add(Dense(400, activation='relu')) model.add(Dense(11, activation='sigmoid')) model.compile(loss='categorical_crossentropy', optimizer='adam', metrics=['accuracy']) and it is running well in this way. but as long as i change the activation of Conv1D [...] read more
I am trying to read file in C language and store the data in arrays , It works well except I do not want the program to finish after closing the file #include <stdio.h> #include <stdlib.h> #include "header.h" char TimeDat[24][8] ; float TempArr [2][24]; float HumiArr[24]; float MotionArr[6][24]; void ReadDataFile(char [...] read more
Recently, my application has crashed when trying to display a rather lengthy (but otherwise simple) HTML e-mail. The crash was caused by mshtml.dll getting a stack overflow (exception code 0xc00000fd). Of note here is that this didn't throw an exception but it actually just crashed the program as a whole. [...] read more
I'm trying to profile a pretty big project using the following decorator on my main() function, but at line 9 I get a "Process finished with exit code -1073741571 (0xC00000FD)", which searching on Google seems to refer to a stack overflow. Does that mean I can't profile my entire program [...] read more
Using SDL to create window for rendering engine that uses Vulkan. Following this code. Following is the snippet of interest: SDL_Init(SDL_INIT_VIDEO); SDL_WindowFlags window_flags = (SDL_WindowFlags)(SDL_WINDOW_VULKAN); _window = SDL_CreateWindow( "Vulkan Engine", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, _windowExtent.width, _windowExtent.height, window_flags ); I'm using Visual Studio 2019. Saw this error, built SDL from source as this [...] read more
I am using tensorflow==2.4.1 , Cuda 11.0 & 8.0, cudNN 8.0. when i run the following code on my GPU: def internet_model(): model = tf.keras.models.Sequential() model.add(tf.keras.Input(shape=(16,))) model.add(tf.keras.layers.Dense(32, activation='relu')) model.add(tf.keras.layers.Dense(32)) print(model.output_shape) internet_model() It gives the error : 2021-03-17 22:53:27.846734: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully opened dynamic library cudart64_110.dll 2021-03-17 22:53:56.628794: I tensorflow/stream_executor/platform/default/dso_loader.cc:49] Successfully [...] read more
Hi I having problem when I try to implement my delete tree function in my Bst class. This is what i have implemented. Currently only have the insert and deletetree functions. struct nodeType { int data; nodeType * LeftLink; nodeType * RightLink; }; class Bst { public: /** * Default [...] read more
I am currently writing an algorithm to analyze the sorting algorithms. I have many inputs from 1000 numbers up to 1 000 000 inputs. Currently I'm having some problems with the Quick Sort function. As I have an input of 1 000 000 of similar numbers (numbers between 1-10) this [...] read more
On a Windows instance a specific application pool stops every 15 days and we have to manually restart that Under the event logs we are getting dotnet clr.dll error given below. > Faulting application name: w3wp.exe, version: 10.0.17763.1, time stamp: > 0xcfdb13d8 Faulting module name: clr.dll, version: 4.7.3610.0, time stamp: [...] read more
I am using the PyCharm Debugger to view the variables of my script. It usually Screenshot of PyCharm code editor. [https://i.stack.imgur.com/ASJET.png] Screenshot of PyCharm execution stack. [https://i.stack.imgur.com/dn1Eo.png] I am trying to inspect the attributes of rulebased_device.subsystem by unfolding the corresponding dropdown menu. It works fine for rulebased_device.system, but with the [...] read more
I tried to run the following very simple block of code: #include <iostream> #include <bits/stdc++.h> using namespace std; int N = 1000027; int main() { cout << "Yes"; int arr[N]; cout << "Yes"; return 0; } However, upon running the program only the first "Yes" text is getting printed, and [...] read more
I am learning C++ and this is my first question for martix array in c++. I am getting Process returned -1073741571 (0xC00000FD) in terminal window. When Tried running it after removing the #define N 1000 then my code gave me the correct result. I want to know why it is [...] read more
I am getting an error when i run this code. The error code is 0xC00000FD and I can't seem to find a fix for what i need. Can someone please help me? Here's the code: #include<iostream> #include<conio.h> using namespace std; int main() { int n; int arr[n]; int i; int [...] read more
I developed application with ArcGIS. This application use TCP, and receive data from other PC. When built with Debug Build and received data, the application terminated abnormally and I got error. Error statement: D:\agent\_work\9\s\src\vctools\crt\vcstartup\src\misc\amd64\chkstk.asm:109: Error: Debugger encountered an exception: Exception at 0x7ff63934e988, code: 0xc00000fd: stack_overflow, flags=0x0 (first chance) After that, [...] read more
I am writing a program with C++ that needs to read a CSV file and store it in a binary search tree. But, when the program is reading the file, it fails in the library debugger.jmc.c and in the method void __fastcall __CheckForDebuggerJustMyCode(unsigned char *JMC_flag). Could someone help me? Thanks! [...] read more
I have this code: #include <iostream> #include <iomanip> using namespace std; main() { int i, n, a[n], b[n], c[n]; cout << "Program kreira nizove po matematickoj zavisnosti" << endl; cout << "Unesite vrednost n =" << endl; cin >> n; for (i = 0; i <=n; i++) { a[i] = [...] read more
When I run this code def foo(): foo() foo() It obviously causes a stack overflow/recursion error Traceback (most recent call last): File ".../main.py", line 4, in <module> foo() File ".../main.py", line 2, in foo foo() File ".../main.py", line 2, in foo foo() File ".../main.py", line 2, in foo foo() [Previous [...] read more
After some troubleshooting with updating the video solution to Android API 30, I have finally ended up with the following Logcat error after having upgraded Exoplayer to 2.12.0 and imported guava:30.0-jre: [OMX.android.goldfish.h264.decoder] setPortMode on output to DynamicANWBuffer failed w/ err -1010 E/FMQ: grantorIdx must be less than 3 E/FMQ: grantorIdx [...] read more
I have a .Net Core 3.1 based Web API created as a standalone package MyApp.exe and installed in a windows based container. Only in certain container instances the WebAPI process MyApp.exe getting crashed randomly. From the application it is not logging any errors. But with the crash Dump got the [...] read more
I have just started coding in C++ and I am using codeblocks. My build log is giving me 0 errors and 0 warning but I do not know why when I run it, it is giving me no result in the terminal. Terminal Window Result: > Process returned -1073741571 (0xC00000FD) [...] read more
I'm at early stage of learning C. My program should find the maximum number of the first column of two-dimensional array. But my program not only doesn't find the maximum, it doesn't work at all. So when I run the program, i get output: Process finished with exit code -1073741571 [...] read more
I am having speed issues with the C++ standard arrays , so I am testing using the stl::array for computation, to see how fast it is. I define a two dimensional array of the struct PAPoint (see below) and attempt to create a 2D array of it. It compiles ok, [...] read more
I'm building a Blazor app which occasionally stops working. The only indication of what is going wrong is a message in the output window from the 'ASP.NET Core Web Server' that says 'Stack overflow.' enter image description here [https://i.stack.imgur.com/BfXMo.png] Looking in the Event Viewer I can see a log for [...] read more
I'm trying to solve Schrödinger’s equation through diagonalization. And I use C++ on VS2019 and use mkl-lapackage to get the eigenvalue and eigenvector. And the whole file is modificated from intel example of LAPACKE_dsyev. I just modificated for a small piece. But I met that: > 0x00C86C79 has an unhandled [...] read more
I have a project in C# built in Windows Service. It works fine but it crash sometimes without any reason. When i check Windows Event Viewer, the only thing i can see is : Application crash Log [https://i.stack.imgur.com/Oyh72.png] Nom de l’application défaillante <<MyApplicationName>>, version : 7.3.0.0, horodatage : 0x5f4ca7db Nom [...] read more
An app pool is crashing with the error "A process serving application pool 'appPoolName' suffered a fatal communication error with the Windows Process Activation Service. The process id was 'id'. The data field contains the error number." When other app pools crash in that machine, they create a dump file [...] read more
For the code down below I get no response, I kept it minimal with no conditions, imagining people will choose positive number for example. It gives me no response besides Process returned -1073741571 (0xC00000FD) execution time : 3.194 s. If I type 5, answer should be 120, not here. #include [...] read more
In my solution, I have three different projects including ASP.Net MVC, Class Library, and Web API. The application works fine on local, but on the production server (Windows Server 2016) after setting "Enable 32-bit Applications = true" in Application Pool (it is a neccessary requirement), the project stopped working. The [...] read more
Im new to wxwidgets, just learning for about a week, I have a problem with a crash on quitting the to ide MSVS2019. I narrowed it down to the dynamic event handler that I put on a listcontrol to catch selections, but its happened a few times with other events [...] read more
I have code that looks like this: #include <array> #include <cstdint> #include <exception> #include <iostream> #include <utility> template<typename T, size_t size> auto randomly_populate_array(std::mt19937& gen, T lower, T upper) { std::array<T, size> arr; std::uniform_int_distribution<T> dist{ lower, upper }; for (auto& e : arr) { e = dist(gen); } return std::move(arr); } [...] read more
Building a struct array with size [x>65535] throws 0xC00000FD error, even if x is declared as int64_t, but inconsistently. Will work fine in one line, not in the next. int64_t length; length = (pull from other code); Foo foo[length]; //^ this works Foo2 foo2[length]; //^ this one doesn't Is this [...] read more
I am trying to read a large matrix stored in CSV format in C++. The same code works well in reading matrix size up to 500*500. But for larger data size, the code throws the following error: Unhandled exception at 0x00007FF612D42068 in z650test3.exe: 0xC00000FD: Stack overflow (parameters: 0x0000000000000001, 0x000000C4532A3000). I [...] read more
I have some weird problem and don't have a clue about how to solve it. I run automation tests using the Spirent Test Center API on win slave (64 bit 8GB RAM). As far as I know test center support only 32bit compilation therefore some of my prerequisites is to [...] read more
The c++ code below works fine for some inputs, but it is stuck at test 9 (number of inputs here is 6000) where it gives me this message "Process returned -1073741571 (0xC00000FD)". This code reads information for n babies (their gender and name). Next it counts the appearances of each [...] read more
I am writing a program where it is necessary to compute the entries of a n x n matrix with n=1000. If I write the following two lines in my code, I will get a stackoverflow error message: const int n = 1000; double matrix[n][n]; Error message: Exception error at [...] read more
Please check for any error and help me. I've tried many different things but nothing seems to help. Only this shows up after running the code, but no window import kivy from kivy.app import App from kivy.uix.label import Label class MyApp(App): def build(self): return Label(text='Ola mundo') if __name__ == "__main__": [...] read more
The code was working fine until suddenly it started throwing exceptions out of the blue. Before this, these exceptions never came up at all. The debugger stops at these two points and for some reason keeps showing me correct_math.h. I have three execptions in total and I'm not sure what [...] read more
I have window form application which i built in visual studio 2017. The installer setup is create with setup installer in visual studio. whenever i install and run the application it got crash. When i look into the windows event viewer i got this Faulting application name: PosAccounting-Sage50-US.exe, version: 4.3.5.0, [...] read more
Application: ASP.NET, C# Framework: 4.6.2 Authentication mode:- Windows Authentication-Allow. Platform:64-bit Server: Win-2012 IIS:8.5 Is being migrated to Azure platform. In testing phase - automated test tool, sends rapid requests. Those requests could be anything like, dummy requests, malicious requests, page doesn't exists, page with inserted javascript or existing page with [...] read more
I'm trying to make a program that is supposed to : * Search for a specific file by going into a directory and its subdirectories (recursively) But I kinda messed up, I have a stack overflow. Here's the function that causes me troubles: BOOL LoopThroughDirectories(LPTSTR fileName) { //Searching for files [...] read more
i got this error = Unhandled exception at 0x7A5B1088 (ucrtbased.dll) in algorthmprokect1.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x006B2FF4). occurred i don't know where i have a mistake i am using strings because i need to get integers from file and they has 1000 digits Update:After Debugging i realized that else [...] read more
I have a documents-terms matrix with 9000 rows (documents) and 1810 cols (terms). I have applied PCA for dimensionality reduction, that outputs, let's say a 9000x200 matrix. My purpose is clustering on this data, and the next step for me is to apply some distance metrics, like cosine_similarity from sklearn. [...] read more
I have a huge XML file almost 500MB size. I want to process it and convert it to JSON format with Rust. I have this code but it says : > thread 'main' has overflowed its stack error: process didn't exit > successfully: target\debug\epg_to_json_to_db.exe (exit code: 0xc00000fd, > STATUS_STACK_OVERFLOW) This [...] read more
I am trying to follow an example to register click events so I can grab coordinates for my mandelbrot experiment. I am trying to get the x and y coordinates of the output picture box image that is created when the mandelbrot is compiled. The issue is that it does [...] read more
I am trying to declare the struct array but it show error. Error message: Unhandled exception at 0x013F28F9 in assignment 2.0.exe: 0xC00000FD: Stack overflow (parameters: 0x00000000, 0x004B2000). #include <iostream> #include <fstream> #include<string> using namespace std; struct emp { int empid; int dob; int height; int weight; int years_working; int salary; [...] read more
I am currently simulating a sample of atoms interacting with each other. In order to do that I am calculating all the relative distances between them in order to calculate the forces. Now, for post analysis I need to have for each time step an array containing all the relative [...] read more
I have a C++ gradle app set up in Visual Studio 2019 Community Edition targeting Android. I'm using NDK 20 (the latest version in Microsoft's android sdk repo). This app is composed of several .so libraries (SDL2, SDL2_image, SDL2_ttf, WolfSSL, MyGameCode, MyGameLibrary, MiscellaneousExternalDependencies.a) and all seems to compile and run [...] read more
I'm trying to sort a vector of Student objects by an attribute: class Student { private: std::string nume; int an; std::list<Curs> cursuri; ... public: Student(); Student(std::string nume, int an); virtual ~Student(); ... }; with these sorting method comparatator: bool Student::sortByMedie(const Student& a, const Student& b) { return a.medie < b.medie; [...] read more
DESCRIPTION I am trying to spawn threads on my Windows machine in a #[no_std] crate, but I am running into problems in the __chkstk function. To start off I created a crate with std and tried to find the places that are responsible for spawning threads in libstd. LIBSTD CODE [...] read more
I have this code to print the numbers based on the number of digits inputted (for example printNum1(2) will output 10-99, printNum1(3) will output 100-999, printNum1(4) will output 1000-9999) iteratively in python: from time import time def printNum1(n): start = time() y = 10 ** n x = y//10 for [...] read more
When compiling the program throws this error: > Unhandled exception at 0x000418B9 в laba6c++.exe: 0xC00000FD: Stack overflow > (characteristic: 0x00000001, 0x00402FFC). I think the error is due to too many recursions of the maxim function, but I don't know how to fix it #include <iostream> #include <cstdio> #include <vector> const [...] read more
When I compile the program with Codeblocks (GNU gcc compiler) it gives me this error: Process returned -1073741571 (0xC00000FD) I tried it without the binary search and it works, but I can't understand why when I insert the binary search it gives me this error. But if I compile it [...] read more
The compiler error is : Process returned -1073741571 (0xC00000FD) execution time : 0.997 s Press any key to continue. My code: #include <iostream> using namespace std; int main() { int n,m,a[1001][1001]; cin>>n>>m; for(int i = 1; i<=n; ++i) for(int j = 1; j<=m; ++j) cin>>a[i][j]; int s = 0; for(int [...] read more
What is the bug in the following source code? I am unable to find it myself. ShapeBase.py from abc import ABC class ShapeBase(ABC): def __init__(self, idd: str): self.id_: str = idd self.cx_: float = 0.0 self.cy_: float = 0.0 @property def cx_(self) -> float: return self.cx_ @cx_.setter def cx_(self, cx: [...] read more
I'm trying to calculate the n-root of a number in c++ using pow, so I tried to do as follow #include <cmath.h> ... double n_root_of_a = pow(a,1.0/n); ... but this isn't working it gives me the following execution error "Process returned -1073741571 (0xC00000FD)". but if I run the same code [...] read more
I need to generate a large number of random alphanumeric string, it is okay with the size below 10000, but when I tried to create the size 100,000, it returned the error -1073741571 (0xC00000FD) and my code won't run. Please tell me what is the error and how to solve [...] read more
I made a automail tool in c# for my employer. But it crashed over night. If you need some code or anything please ask and I will provide. The error: http://puu.sh/fxyuP/ac05065f22.png http://puu.sh/fxywx/7008f782ef.png puu.sh/fxyyn/f47b67d6d4.png the event log general error: Faulting application name: DSVODBC APP.exe, version: 1.0.0.0, time stamp: 0x54d34893 Faulting module [...] read more
My issue is that I get an exception thrown when my array size becomes too big: "Unhandled exception at 0x00F22A67 in lab.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x00682F60)." It was recommended that I use vectors instead of arrays, but this did not solve the issue. I added a break and [...] read more
Excuse me, my primary language isn`t English. I wrote a recursion function to resolve the "Queens Problem". int* Queen_Recursion(int n,int nowRow = 1, int nowColumn = 1, int* map = nullptr) { if (map == nullptr) map = new int[n + 1]{0}; if (nowRow > n) { std::cout << "No." [...] read more
Program needs to collect string "name" and double "speed" from user. User also defines amount of data to input. It must then sort data from fastest to slowest with corresponding "name" listed with its speed. I have successfully managed the program to 'get' user input for amount of data (size [...] read more
for the following problem: "You are given a primitive calculator that can perform the following three operations with the current number 𝑥: multiply 𝑥 by 2, multiply 𝑥 by 3, or add 1 to 𝑥. Your goal is given a positive integer 𝑛, find the minimum number of operations needed [...] read more
I am trying to create 1000000+ threads and have them add and remove elements from a queue. The queue has a size of 10 elements and when it's full and wants to add an element it waits for a signal from a Condition, same thing goes for when it's empty [...] read more
Unhandled exception at 0x007A9E89 in Project1.exe: 0xC00000FD: Stack overflow (parameters: 0x00000001, 0x00A02FAC). the main idea from the code is creating a txt file that has a 100,000 number why I'm doing this it's project that I have to do, after the debug retch this function long int partition(long int T[], [...] read more
A recursive call while implementing merge sort throws an error. I tried using debug macros to see if its some memory restriction without luck. fn merge<T: PartialOrd>(mut v: Vec<T>) -> Vec<T> { if v.len() < 1 { return v; } let mut res = Vec::with_capacity(v.len()); let b = v.split_off(v.len() / [...] read more
This code that I am writing is to detect SCCs in a graph, it is the first programming assignment of "stanford graphs and data structures" but, with large inputs it throws exception errors. I have tried it with different IDEs and all the time I get segmentation fault with larger [...] read more
I'm writing a program in C++ that calls a function in each iteration of a for-loop and stores the "results" in a .csv file. The function takes in 18 parameters and stores the results in an array. When I run the program with 10,000 iterations it works fine. However, when [...] read more
I am trying to overload the <= operator but the program has an error > Process finished with exit code -1073741571 (0xC00000FD) op.h bool operator<=(const Date& d1, const Date& d2) { return d1 <= d2; } main.cpp cout << "Checking <=" << endl; assert(Date(1,1,2000) <= Date(2,1,2000)); assert(!(Date(2,1,2000) <= Date(1,1,2000))); assert(Date(2,1,2000) [...] read more
I get the following output when I run the code below: Matrikel: 01717 Process finished with exit code -1073741571 (0xC00000FD) Code: char infos[255]; char matrikelnr[5]; sprintf(matrikelnr, "%d", s->matnr); size_t n = strlen(matrikelnr); while (n != 5) { memmove(matrikelnr + 1, matrikelnr, 5); matrikelnr[0] = '0'; n = strlen(matrikelnr); } printf("Matrikel: [...] read more
While working on a Java Swing project I encountered the following runtime error "An unrecoverable stack overflow has occurred... Java returned: -1073741819". Project environment: Netbeans 12, jdk1.8.0_211, poi 4.1 on windows 10 I cannot reproduce this error. An unrecoverable stack overflow has occurred. # # A fatal error has been [...] read more
I am working on a calculator project, I am using yacc as a parser and as I have 4 different values to parse I wanted to check what was just parsed. I have a strong feeling it won't work but I don't know what to use else. I Only get [...] read more
so I just programmed in pycharm a sort of blackjack simulation for card counting. The goal is to run many many hands of blackjack using perfect basic strategy and card counting and seeing based off the users bankroll and bet spread what their risk of losing all their money is. [...] read more