A.str1比str2大 B.str1比str2小 C.str1與str2相等 D.字符串無法比較
A.if (a=b) x++; B.if (a=<b) x++; C.if (a-b) x++; D.if ( x ) x++;
A.(x>=y)&&(y>=z) B.(x>=y) AND (y>=z) C.(x>=y>=z) D.(x>=z)&(y>=z)
A.4 B.3 C.2 D.8
程序運行結果是:100。
A.p2=p1; B.p2=**p1; C.p2=&p1; D.p2=*p1;