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.
Let's say that I have a code like below #include <stdio.h> int main(void) { char char_array[5] = {'a', 'b', 'c', 'd', 'e'}; int int_array[5] = {1, 2, 3, 4, 5}; int i; char *char_ptr; int *int_ptr; char_ptr = char_array; int_ptr = int_array; for(i = 0; i < 5; i++){ printf("[char_ptr]For [...] read more