Could we point and address specific place in memory using pointer in c language? Then modify it from another file (ANOTHER PROGRAM) and view it from any where. Like :
Modifying it :
#include<stdio.h>
void main(){
   int *p;
   p= 12345678;
   scanf("%d",p);
}
Viewing it :
#include<stdio.h>
void main(){
   int *p;
   p= 12345678;
   printf("%d", *p);
}
 
     
     
    