学习下

#include <stdio.h>

void pass(){
    int a=0;
    int *p=&a;
    while(1){
        if(*p==123)
            break;
        p++;
    }
    *p=456;
}

int main(){
    int x=123;
    pass();
    printf("%d\n",x);
    return 0;
}