单项选择题

有下列程序:
#include " stdio.h"
main()
int x=0;
int y=0;
while (x<7&&++y)
y--;
x++;
printf("%d,%d",y,x);

程序的输出结果是( )。

A.0, 7
B.7, 7
C.0,6
D.1,6