下列程序的运行结果为()。#include < iostream.h>void main(){int x;int &p=x;x=10;p=x+10;cout< < x< < ","< < p< < endl;}