不能直接用,要用指针的方式传进被调函数void foo(Int *p){ *p=1000;}main(){ int a=100; //a = 100 now foo(&a); //a = 1000 now}