This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
So I am new to using GDB and I am using the following program as an excercise #include <stdio.h> #include <stdlib.h> int main() { unsigned int value1, abs_value1, abs_value2, abs_value3; int value2, value3; char myarray[10]; printf("Enter 10 characters:"); fgets(myarray, 11, stdin); printf("Enter an integer between 0 and 10,000:"); scanf("%d", &value1); [...] read more
The system I am working with has a numbering system where the numbers 0-999 are represented by the usual 0-999, but 1000 is represented by A00, followed by A01, A02, A03, etc, 1100 being B00 etc. I can't think of a way to handle this in T-SQL without resorting to [...] read more
Unhandled exception at 0x5F0C08AB (msvcr120d.dll) in ConsoleApplication10.exe: 0xC0000005: Access violation reading location 0x000003E7. It's weird. I just made new memory. code is too long to show you guys. I debug it and it breaks where the line i used new operator. read more