Click here to Skip to main content
15,910,980 members

Comments by neor007i (Top 3 by date)

neor007i 27-Oct-16 23:00pm View    
again the type modifiers are used with normal variables and NOT WITH POINTERS.
neor007i 27-Oct-16 22:59pm View    
Like i said far pointers are allowed within stack segment but when I used far with a normal variable not of pointer type, error generates.
neor007i 27-Oct-16 22:58pm View    
#include<stdio.h>
int main(){
char far *p =(char far *)0x55550005;
char far *q =(char far *)0x53332225;
*p = 80;
(*p)++;
printf("%d",*q);
return 0;
}