How would you eliminate the warning generated on complaining the following program?
main()
{
char far *scr;
scr = 0xB8000000;
*scr = 'A';
}
Use the typecast scr = (char far *) 0xB8000000;
View answer Workspace Report Error Discuss