Can we access RAM?
How? Whats the range of access?
Similarly What are other hardware we can access?
Answer / shrirang phadke
Yes, we can access RAM using "far" pointer as follows...
int main()
{
char far *s;
s = 0x413;
/*-- desired code goes here --*/
return 0;
}
Now pointer(*s) is pointing to the base of Memory...
But, i guess far pointers works only in 16-bit enviornment.
Similarly, using far pointer we can access keyboard(0x417)
as well as Moniter(0xB8000000).
| Is This Answer Correct ? | 5 Yes | 0 No |
‘ C’ PROGRAME TO SHOW THE TYPE OF TRANGLE BY ACCEPTING IT’S LENGTH .
find out largest elemant of diagonalmatrix
What is putchar() function?
a c code by using memory allocation for add ,multiply of sprase matrixes
what is the structure?
What is union and structure?
What is a const pointer in c?
define function
What are the 4 types of organizational structures?
what is the difference between structural,object based,object orientd programming languages?
how to implement stack work as a queue?
how to find anagram without using string functions using only loops in c programming