Skip to content
Snippets Groups Projects
pointer_comparison.c 53 B
int x,y,*p;
main(){
  p = &x;
  while (p++ != &y);
}