判斷題如果strcmp(s1,s2)的返回值為一個(gè)負(fù)數(shù),則表明字符串s1一定小于字符串s2。

您可能感興趣的試卷

你可能感興趣的試題

2.單項(xiàng)選擇題下面的二維數(shù)組初始化語句中,錯(cuò)誤的是:()。

A.float b[2][2]={,,,};
B.int a[][2]={{1,2},{3,4}};
C.int a[2][]={{1,2},{3,4}};
D.float a[2][2]={0};

3.單項(xiàng)選擇題下面錯(cuò)誤的初始化語句是:()。

A.char str[]="hello";
B.char str[100]="hello";
C.char str[]={’h’,’e’,’l’,’l’,’o’};
D.char str[]={’hello’};