I've an address in memory and I want to find out the permissions (r/w/x) of that memory address.
E.g.
char *s = "hello";
Here, the string literal "hello" is stored in read-only memory. When running the program through …
Possible Duplicate:
How to implement getch() function of C in Linux?
What is the equivalent Linux version of the conio.h header file from MS-DOS?
Is there a way to replace its functionality? e.g. getch()
I'm using gcc and …