#include "head.h"
using namespace std;
void ll(double *vth, double &llr_msb)
{
*vth = 5; llr_msb = 8;// *vth表示变量
}
void main()
{
double vth=0, llr_msb=0;
ll(&vth, llr_msb); // llr_msb为变量,但是该函数会自动取该变量的地址 作为传入参数
cout << vth << " " << llr_msb << endl;
for (;;);
}