试给出如下各代码的输出结果。
a.
int x=20;
int y=10;
while((x>10)&&(y&15)){
y=y+1;
x=x-1;
printf("*");
} b.
int x;
for(x=10;x;x=x-1)
printf("*");
c.
int x;
for(x=0;x<10;x=x+1){
if(x%2)
printf("*");
} d.
int x=0;
int i;
while (x>10){
for(i=0;i<x;i=x+1)
printf("*");
x=x+1;
} 