peterworth
Programmer
i want to read directly from an address in memory (ie regardless of whether it is part of the assigned program memory).
can i do this in a C program?...
this:
char* pointer = (char*)0;
fwrite(pointer,4,1,file);
causes a debug assertion error. can i just turn these assertions off or something?
can i do this in a C program?...
this:
char* pointer = (char*)0;
fwrite(pointer,4,1,file);
causes a debug assertion error. can i just turn these assertions off or something?