Basic hello world program using MinGW and gcc with no additional flags. I'm confused why I'm getting the errors 'unaddressable access', 'possible leak', and '4134 byte(s) of still-reachable allocation'.
Target: x86_64-w64-mingw32 using gcc version 8.2.0
#include <stdio.h>
int main() {
printf("Hello World");
return 0;
}
Error message from Dr. Memory:
Shouldn't there be no errors at all from a simple program like this? Maybe if I could get some insight into what is going on.